https://github.com/vbauerster/vim-highlighter
https://github.com/vbauerster/vim-highlighter
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vbauerster/vim-highlighter
- Owner: vbauerster
- Created: 2016-02-09T18:52:21.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-09-28T11:40:09.000Z (almost 9 years ago)
- Last Synced: 2025-11-21T05:02:51.008Z (8 months ago)
- Language: Vim script
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# highlighter.vim
Small vim plugin, which defines `:Highlight` Ex command
When invoking `:Highlight`, it prompts you to enter a color number from 1 to 6,
then highlights all matching words with that color
It is recommended you setup following mappings
```
" to highlight
nnoremap hi :Highlight
" to clear all highlights
nnoremap :call clearmatches():noh
```