Skip to content

Commit e6de756

Browse files
committed
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 acc6327 commit e6de756

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/LanguageClient.vim

+2-2
Original file line numberDiff line numberDiff line change
@@ -785,13 +785,13 @@ function! LanguageClient#binaryPath() abort
785785
return l:path . l:filename
786786
endfunction
787787

788-
function! LanguageClient#installBinaries()
788+
function! LanguageClient#installBinaries() abort
789789
let l:installsh = 'cd ' . s:root . ' && ./install.sh'
790790
let l:output = split(system(l:installsh), '\n')
791791
for l:line in l:output
792792
echomsg l:line
793793
endfor
794-
echomsg "Success."
794+
echomsg 'Success.'
795795
endfunction
796796

797797
function! s:Launch() abort

0 commit comments

Comments
 (0)