Fix #2330 - Do not use getcurpos() to avoid changing curswant

This commit is contained in:
w0rp
2019-03-07 12:28:36 +00:00
parent 6aef52f026
commit 5505f2323d
11 changed files with 19 additions and 19 deletions

View File

@@ -11,7 +11,7 @@
" be returned.
function! ale#loclist_jumping#FindNearest(direction, wrap, ...) abort
let l:buffer = bufnr('')
let l:pos = getcurpos()
let l:pos = getpos('.')
let l:info = get(g:ale_buffer_info, bufnr('%'), {'loclist': []})
" Copy the list and filter to only the items in this buffer.
let l:loclist = filter(copy(l:info.loclist), 'v:val.bufnr == l:buffer')