From 809a348490feb050e2d4561d0dbbcd2a16f73325 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 12 Oct 2019 10:43:24 +0200 Subject: [PATCH] [ADD][VIM] Mappings to navigate quickfix history It also supports navigating the location list history when inside a location list. The autoload plug-in idea was taken from this Vimways article: --- vim/.vim/autoload/quickfixed.vim | 68 ++++++++++++++++++++++++++++++++ vim/.vim/ftplugin/qf.vim | 7 ++++ 2 files changed, 75 insertions(+) create mode 100644 vim/.vim/autoload/quickfixed.vim create mode 100644 vim/.vim/ftplugin/qf.vim diff --git a/vim/.vim/autoload/quickfixed.vim b/vim/.vim/autoload/quickfixed.vim new file mode 100644 index 0000000..4862f8f --- /dev/null +++ b/vim/.vim/autoload/quickfixed.vim @@ -0,0 +1,68 @@ +" Taken from the Vimways article + +function! s:isLocation() + " Get dictionary of properties of the current window + let wininfo = filter(getwininfo(), {i,v -> v.winnr == winnr()})[0] + return wininfo.loclist +endfunction + +function! s:length() + " Get the size of the current quickfix/location list + return len(s:isLocation() ? getloclist(0) : getqflist()) +endfunction + +function! s:getProperty(key, ...) + " getqflist() and getloclist() expect a dictionary argument + " If a 2nd argument has been passed in, use it as the value, else 0 + let l:what = {a:key : a:0 ? a:1 : 0} + let l:listdict = s:isLocation() ? getloclist(0, l:what) : getqflist(l:what) + return get(l:listdict, a:key) +endfunction + +function! s:isFirst() + return s:getProperty('nr') <= 1 +endfunction + +function! s:isLast() + return s:getProperty('nr') == s:getProperty('nr', '$') +endfunction + +function! s:history(goNewer) + " Build the command: one of colder/cnewer/lolder/lnewer + let l:cmd = (s:isLocation() ? 'l' : 'c') . (a:goNewer ? 'newer' : 'older') + + " Apply the cmd repeatedly until we hit a non-empty list, or first/last list + " is reached + while 1 + if (a:goNewer && s:isLast()) || (!a:goNewer && s:isFirst()) | break | endif + " Run the command. Use :silent to suppress message-history output. + " Note that the :try wrapper is no longer necessary + silent execute l:cmd + if s:length() | break | endif + endwhile + + " Echo a description of the new quickfix / location list. + " And make it look like a rainbow. + let l:nr = s:getProperty('nr') + let l:last = s:getProperty('nr', '$') + echohl MoreMsg | echon '(' + echohl Identifier | echon l:nr + if l:last > 1 + echohl LineNr | echon ' of ' + echohl Identifier | echon l:last + endif + echohl MoreMsg | echon ') ' + echohl MoreMsg | echon '[' + echohl Identifier | echon s:length() + echohl MoreMsg | echon '] ' + echohl Normal | echon s:getProperty('title') + echohl None +endfunction + +function! quickfixed#older() + call s:history(0) +endfunction + +function! quickfixed#newer() + call s:history(1) +endfunction diff --git a/vim/.vim/ftplugin/qf.vim b/vim/.vim/ftplugin/qf.vim new file mode 100644 index 0000000..32cc250 --- /dev/null +++ b/vim/.vim/ftplugin/qf.vim @@ -0,0 +1,7 @@ +" Use h/l to go to the previous/next non-empty quickfix or location list +nnoremap h :call quickfixed#older() +nnoremap l :call quickfixed#newer() + +" Use left/right to go to the previous/next non-empty quickfix or location list +nnoremap :call quickfixed#older() +nnoremap :call quickfixed#newer()