Fix other warnings

This commit is contained in:
Bartolomeo Stellato
2018-09-08 16:05:34 -04:00
parent 91bb948b90
commit b3adf241c3
3 changed files with 4 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ call ale#Set('julia_executable', 'julia')
function! ale_linters#julia#languageserver#GetCommand(buffer) abort
let l:julia_executable = ale#Var(a:buffer, 'julia_executable')
let l:cmd_string = 'using LanguageServer; server = LanguageServer.LanguageServerInstance(STDIN, STDOUT, false); server.runlinter = true; run(server);'
return l:julia_executable . ' --startup-file=no --history-file=no -e ' . ale#Escape(l:cmd_string)
endfunction