Skip to content

Commit 533fe6c

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 79b059c commit 533fe6c

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
@@ -794,13 +794,13 @@ function! LanguageClient#binaryPath() abort
794794
return l:path . l:filename
795795
endfunction
796796

797-
function! LanguageClient#installBinaries()
797+
function! LanguageClient#installBinaries() abort
798798
let l:installsh = 'cd ' . s:root . ' && ./install.sh'
799799
let l:output = split(system(l:installsh), '\n')
800800
for l:line in l:output
801801
echomsg l:line
802802
endfor
803-
echomsg "Success."
803+
echomsg 'Success.'
804804
endfunction
805805

806806
function! s:Launch() abort

0 commit comments

Comments
 (0)