nvim: Add fzf quickfix
Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
parent
91248a4822
commit
ff46041c41
1 changed files with 3 additions and 0 deletions
|
@ -11,6 +11,7 @@ Plug 'haya14busa/incsearch-easymotion.vim'
|
||||||
" Fuzzy search
|
" Fuzzy search
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
Plug 'pbogut/fzf-mru.vim'
|
Plug 'pbogut/fzf-mru.vim'
|
||||||
|
Plug 'fszymanski/fzf-quickfix', {'on': 'Quickfix'}
|
||||||
" Remove extraneous whitespace when edit mode is exited
|
" Remove extraneous whitespace when edit mode is exited
|
||||||
Plug 'axelf4/vim-strip-trailing-whitespace'
|
Plug 'axelf4/vim-strip-trailing-whitespace'
|
||||||
" Status bar mods
|
" Status bar mods
|
||||||
|
@ -306,6 +307,7 @@ nnoremap ]Q :clast<CR>
|
||||||
nnoremap qs :Grepper -nojump -query<SPACE>
|
nnoremap qs :Grepper -nojump -query<SPACE>
|
||||||
nnoremap q* :Grepper -nojump -cword<CR>
|
nnoremap q* :Grepper -nojump -cword<CR>
|
||||||
nnoremap qt :call ToggleQuickfixList()<CR>
|
nnoremap qt :call ToggleQuickfixList()<CR>
|
||||||
|
nnoremap qf :Quickfix<CR>
|
||||||
nnoremap Lo :lopen<CR>
|
nnoremap Lo :lopen<CR>
|
||||||
nnoremap Lc :lclose<CR>
|
nnoremap Lc :lclose<CR>
|
||||||
nnoremap [l :lprevious<CR>
|
nnoremap [l :lprevious<CR>
|
||||||
|
@ -314,6 +316,7 @@ nnoremap [L :lfirst<CR>
|
||||||
nnoremap ]L :llast<CR>
|
nnoremap ]L :llast<CR>
|
||||||
nnoremap Ls :Grepper -nojump -noquickfix -query<SPACE>
|
nnoremap Ls :Grepper -nojump -noquickfix -query<SPACE>
|
||||||
nnoremap L* :Grepper -nojump -noquickfix -cword<CR>
|
nnoremap L* :Grepper -nojump -noquickfix -cword<CR>
|
||||||
|
nnoremap Lf :Quickfix!<CR>
|
||||||
nnoremap Lt :call ToggleLocationList()<CR>
|
nnoremap Lt :call ToggleLocationList()<CR>
|
||||||
" Preview tags
|
" Preview tags
|
||||||
nnoremap pt :ptag <C-R><C-W><CR>
|
nnoremap pt :ptag <C-R><C-W><CR>
|
||||||
|
|
Loading…
Reference in a new issue