Add vim rg fulltext fuzzy search for current dir
Allows searching current working directory's files with rg (or ag,pt,find) when invoked with <c-F> in vim.
This commit is contained in:
parent
d398b60ca7
commit
078259182c
1 changed files with 2 additions and 1 deletions
|
@ -388,7 +388,8 @@ endfunction
|
|||
nnoremap <leader>wF :execute(":call SearchWiki()")<cr>
|
||||
" fuzzy search wiki with leaderf
|
||||
nnoremap <leader>wf :execute(":call RgWiki()")<cr>
|
||||
nnoremap <C-F> :execute(":Leaderf rg -e *")<cr>
|
||||
" fuzzy search current working dir
|
||||
nnoremap <C-F> :execute(":Leaderf rg")<cr>
|
||||
vnoremap <C-F> <Plug>CtrlSFVwordPath
|
||||
|
||||
" Mostly dealing with Prose writing from here on out
|
||||
|
|
Loading…
Reference in a new issue