Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/google/vim-searchindex
vim-searchindex: display number of search matches & index of a current match
https://github.com/google/vim-searchindex
Last synced: 3 months ago
JSON representation
vim-searchindex: display number of search matches & index of a current match
- Host: GitHub
- URL: https://github.com/google/vim-searchindex
- Owner: google
- License: apache-2.0
- Created: 2015-10-13T23:03:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-09-26T12:40:42.000Z (over 5 years ago)
- Last Synced: 2024-08-08T16:14:55.440Z (7 months ago)
- Language: Vim script
- Homepage:
- Size: 413 KB
- Stars: 361
- Watchers: 19
- Forks: 29
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# vim-searchindex
This plugin shows how many times a search pattern occurs in the current buffer.
After each search, it displays total number of matches, as well as the index of
a current match, in the command line:
You can also press `g/` to display search index for the last search term at the
current cursor position.That's it! The plugin is as simple and unobtrusive as possible. It works out of
the box with all built-in search commands, and stays fast even on huge files
thanks to caching. For full documentation (including extensibility and
configuration options), see `:help searchindex`.## Installation
**Note:** This behavior is now supported natively in Vim 8.1.1270 and Neovim
0.4.0 (requires `set shortmess-=S` to enable on vim). Prefer updating your
editor if possible instead of using this plugin.If you don't have a preferred installation method, I recommend
installing [pathogen.vim](https://github.com/tpope/vim-pathogen), and
then simply copy and paste:cd ~/.vim/bundle
git clone https://github.com/google/vim-searchindex.gitOnce help tags have been generated, you can view the manual with
`:help searchindex`.*Disclaimer: This is not an official Google product. It is just an open source
code that happens to be owned by Google.*