Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/t9md/vim-quickhl

quickly highlight <cword> or visually selected word
https://github.com/t9md/vim-quickhl

Last synced: about 2 months ago
JSON representation

quickly highlight <cword> or visually selected word

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)
```