We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nnoremap <leader>g :Grepper -tool git<cr> nnoremap <leader>G :Grepper -tool ag<cr> nmap gs <plug>(GrepperOperator) xmap gs <plug>(GrepperOperator) let g:grepper = {} let g:grepper.tools = ['git', 'ag', 'rg'] let g:grepper.jump = 1 let g:grepper.next_tool = '<leader>g' let g:grepper.simple_prompt = 1 let g:grepper.quickfix = 0
Start searching the word under the cursor:
nnoremap <leader>* :Grepper -tool ag -cword -noprompt<cr>