Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/weilbith/vim-quickname
Vim plugin to name your quickfix lists and make them easily recoverable
https://github.com/weilbith/vim-quickname
neovim neovim-plugin vim vim-plugin
Last synced: 3 months ago
JSON representation
Vim plugin to name your quickfix lists and make them easily recoverable
- Host: GitHub
- URL: https://github.com/weilbith/vim-quickname
- Owner: weilbith
- License: mit
- Created: 2020-05-16T12:35:12.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-16T12:49:15.000Z (over 4 years ago)
- Last Synced: 2024-06-10T02:31:31.857Z (5 months ago)
- Topics: neovim, neovim-plugin, vim, vim-plugin
- Language: Vim script
- Homepage:
- Size: 4.88 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vim Quickfix Lists with Names
A minimalistic Vim plugin to save your quickfix lists with a name to make is
easily recoverable. Instead of traversing through the quickfix lists history
with `:colder` and `:cnewer` this allows to jump directly to lists of interest.
Additionally it includes some tiny features to select, highlight and also
integrate reloaded quickfix lists into you status line. Checkout the
documentation for details of how the user flow look like and how to customize
it.## Installation
Install the plugin with your favorite manager tool. Here is an example using
[dein.vim](https://github.com/Shougo/dein.vim):```vim
call dein#add('weilbith/vim-quickname', {
\ 'on_cmd': ['QuicknameSave', 'QuicknameLoad', 'QuicknameRemove']
\ })
```