Fix out-by-one error in column on goto-definition

Fixes #1860
This commit is contained in:
David Hotham
2018-08-27 13:52:49 +01:00
parent 9d7c48038c
commit aef11cc0d2
2 changed files with 5 additions and 5 deletions

View File

@@ -49,7 +49,7 @@ function! ale#definition#HandleLSPResponse(conn_id, response) abort
for l:item in l:result
let l:filename = ale#path#FromURI(l:item.uri)
let l:line = l:item.range.start.line + 1
let l:column = l:item.range.start.character
let l:column = l:item.range.start.character + 1
call ale#util#Open(l:filename, l:line, l:column, l:options)
break