fixing linting

This commit is contained in:
dsych 2021-01-15 23:16:02 -05:00 committed by Ben Jackson
commit 639e89f5db
2 changed files with 2 additions and 2 deletions

View file

@ -541,7 +541,7 @@ function! vimspector#ShowTooltipForSelection() range abort
let lines[0] = strcharpart(lines[0], start[1])
let lines_len = len(lines) - 1
if len(lines) == 1
if len( lines ) == 1
let lines[lines_len] = strcharpart(lines[lines_len], 0, end[1] - start[1])
else
let lines[lines_len] = strcharpart(lines[lines_len], 0, end[1])

View file

@ -641,7 +641,7 @@ function! Test_VariableEval()
" so we need to manually escape and re-trigger previous visual selection
call execute('normal v')
call feedkeys("lllll\<esc>", 'xt')
call execute("normal gv")
call execute('normal gv')
call vimspector#ShowTooltipForSelection()