Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t9md/vim-quickhl
quickly highlight <cword> or visually selected word
https://github.com/t9md/vim-quickhl
Last synced: 15 days ago
JSON representation
quickly highlight <cword> or visually selected word
- Host: GitHub
- URL: https://github.com/t9md/vim-quickhl
- Owner: t9md
- Created: 2011-06-21T11:39:53.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-04-21T15:52:30.000Z (7 months ago)
- Last Synced: 2024-08-05T20:32:40.192Z (3 months ago)
- Language: Vim script
- Homepage: http://www.vim.org/scripts/script.php?script_id=3692
- Size: 102 KB
- Stars: 228
- Watchers: 11
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![](https://github.com/t9md/t9md/raw/dc52eaf0f8cb0984697f42c50be09174117b2ddb/img/quickhl_anime.gif)
[help](https://github.com/t9md/vim-quickhl/blob/master/doc/quickhl.txt)
# Highlight on the fly.
quickhl.vim support highlight for
- manual keywords
- `tag` in ctags generated file
- automatically highlight word under cursor(``).# Config
Minimum
```Vim
nmap m (quickhl-manual-this)
xmap m (quickhl-manual-this)
nmap M (quickhl-manual-reset)
xmap M (quickhl-manual-reset)
```Full
```Vim
nmap m (quickhl-manual-this)
xmap m (quickhl-manual-this)nmap w (quickhl-manual-this-whole-word)
xmap w (quickhl-manual-this-whole-word)nmap c (quickhl-manual-clear)
vmap c (quickhl-manual-clear)nmap M (quickhl-manual-reset)
xmap M (quickhl-manual-reset)nmap j (quickhl-cword-toggle)
nmap ] (quickhl-tag-toggle)
map H (operator-quickhl-manual-this-motion)
```