Skip to content

Commit 624c4bc

Browse files
authored
Fix vint autoload plugin errors
autoload/LanguageClient.vim:599:1: Use the abort attribute for functions in autoload (see Google VimScript Style Guide (Functions)) autoload/LanguageClient.vim:605:13: Prefer single quoted strings (see Google VimScript Style Guide (Strings))
1 parent ac44234 commit 624c4bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/LanguageClient.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -596,13 +596,13 @@ function! LanguageClient#binaryPath() abort
596596
return l:path . l:filename
597597
endfunction
598598

599-
function! LanguageClient#installBinaries()
599+
function! LanguageClient#installBinaries() abort
600600
let l:installsh = 'cd ' . s:root . ' && ./install.sh'
601601
let l:output = split(system(l:installsh), '\n')
602602
for l:line in l:output
603603
echomsg l:line
604604
endfor
605-
echomsg "Success."
605+
echomsg 'Success.'
606606
endfunction
607607

608608
function! s:Launch() abort

0 commit comments

Comments
 (0)