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)
- Host: GitHub
- URL: https://github.com/pawel-slowik/vim-find
- Owner: pawel-slowik
- License: unlicense
- Created: 2018-07-31T18:14:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-01-10T10:18:02.000Z (over 1 year ago)
- Last Synced: 2025-02-24T12:48:03.549Z (over 1 year ago)
- Topics: vim, vim-plugin
- Language: Vim Script
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()