Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crashmoney/filter.vim
A light Vim plugin that filters search results into a quickfix buffer, helpful for searching through long files.
https://github.com/crashmoney/filter.vim
search vim vim-plugin
Last synced: about 2 months ago
JSON representation
A light Vim plugin that filters search results into a quickfix buffer, helpful for searching through long files.
- Host: GitHub
- URL: https://github.com/crashmoney/filter.vim
- Owner: crashmoney
- License: gpl-3.0
- Created: 2024-05-04T15:06:59.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-05T09:37:39.000Z (8 months ago)
- Last Synced: 2024-05-05T16:25:09.450Z (8 months ago)
- Topics: search, vim, vim-plugin
- Language: Vim Script
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# filter.vim
A light Vim plugin that filters search results into a quickfix buffer, helpful for searching through long files.
## Features
- light, simple and quick; the entire plugin is under 50 lines (including comments) with one command
- dependency-free; `filter.vim` is written entirely in VimScript
- compatible with both Vim and NeoVim## Usage
1. `:Filter`
2. Enter the term to be filtered (`Enter filtered: `)
3. Press enterClose the quickfix window using `:close` or ` c` when done viewing results.
## Installation
Use your favourite plugin manager.
- vim-plug: `Plug 'crashmoney/filter.vim'`
- vundle: `Plugin 'crashmoney/filter.vim'`## Development
I consider the plugin to be at a mostly-complete stage; the only feature I would add is the ability to take an argument.
If there are any errors or potential features, you can [open an issue](https://github.com/crashmoney/filter.vim/issues/new) 😄