Escape julia command + reorder table in README

This commit is contained in:
Bartolomeo Stellato
2018-09-09 10:09:05 -04:00
parent b3adf241c3
commit 97ed25a8bf
3 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ 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)
return ale#Escape(l:julia_executable) . ' --startup-file=no --history-file=no -e ' . ale#Escape(l:cmd_string)
endfunction
call ale#linter#Define('julia', {