1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 05:30:05 +08:00

Fix warning message

Minor fix for warning of language server executable.
This commit is contained in:
Seong Yong-ju 2018-01-24 12:26:15 +09:00
parent 1a59dbfb84
commit 4c98bd5344

View File

@ -99,7 +99,7 @@ function! SpaceVim#layers#lsp#set_variable(var) abort
if executable(cmd) if executable(cmd)
call add(s:enabled_fts, ft) call add(s:enabled_fts, ft)
else else
call SpaceVim#logger#warn('Failed to enable lsp for ' . ft . ', ' . cmd . 'is not executable!') call SpaceVim#logger#warn('Failed to enable lsp for ' . ft . ', ' . cmd . ' is not executable!')
endif endif
endif endif
endfor endfor