#1162 Get LSP completions working reasonably well

This commit is contained in:
w0rp
2017-11-26 13:01:01 +00:00
parent b1a6abdda6
commit 8254e507d6
4 changed files with 36 additions and 17 deletions

View File

@@ -95,7 +95,7 @@ function! ale#lsp#message#Completion(buffer, line, column, trigger_character) ab
\ 'textDocument': {
\ 'uri': ale#path#ToURI(expand('#' . a:buffer . ':p')),
\ },
\ 'position': {'line': a:line - 1, 'character': a:column - 1},
\ 'position': {'line': a:line - 1, 'character': a:column},
\}]
if !empty(a:trigger_character)