An open API service indexing awesome lists of open source software.

https://github.com/pawel-slowik/vim-find

Vim plugin for searching in files (grepprg wrapper)
https://github.com/pawel-slowik/vim-find

vim vim-plugin

Last synced: 12 months ago
JSON representation

Vim plugin for searching in files (grepprg wrapper)

Awesome Lists containing this project

README

          

This is a micro-plugin for the [Vim](https://www.vim.org/) editor. It
simplifies searching for the current word or visually selected text in all
files in a directory. Search results are displayed in the quickfix list.

With `grepprg` set to something other than `grep`, the plugin may not work
correctly.

The plugin doesn't define any mappings, you need to define these yourself,
e.g.:

vnoremap f :call find#FindVisualSelection()
nnoremap f :call find#FindWord()