Fix the didSave tests so they work in NeoVim 0.1.7, and do not send the message for tsserver

This commit is contained in:
w0rp 2018-01-19 16:50:04 +00:00
parent 042dec059a
commit a5ec4143d2
2 changed files with 15 additions and 4 deletions

View file

@ -704,8 +704,8 @@ function! s:CheckWithLSP(buffer, linter) abort
let l:request_id = ale#lsp#Send(l:id, l:change_message, l:root)
" If this was a file save event, also notify the server of that.
let l:is_save = getbufvar(a:buffer, 'ale_save_event_fired', 0)
if l:is_save != 0
if a:linter.lsp isnot# 'tsserver'
\&& getbufvar(a:buffer, 'ale_save_event_fired', 0)
let l:save_message = ale#lsp#message#DidSave(a:buffer)
let l:request_id = ale#lsp#Send(l:id, l:save_message, l:root)
endif