-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
where to config the underline? #173
Comments
Maybe you can find something useful in README.md of this repo (search |
I‘d like to remove, not add attribute. I have search *.vim in rainbow, there seems no underline configuration. |
You can read the README about troubleshooting, and use the tool to check which syntax rule is actived. |
Yes, it is the spell check. But I found that the configuration is different with the README. 'parentheses_options': 'contains=@Spell' to turn off the spell checker. I have add the spell related configuration in vimrc set spell spelllang=en_us
hi clear SpellBad
hi SpellBad cterm=underline
hi clear SpellRare
hi SpellRare cterm=underline
hi clear SpellCap
hi SpellCap cterm=underline
hi clear SpellLocal
hi SpellLocal cterm=underline |
But the configuration to explicitly turn off spell check in parentheses is |
The trick is , vim, by default, will check if there is any syntax rules about spell checking, if there is So the solution is define your own top level spell checking default instead of let vim decide it for you. |
I don " set spell spelllang=en_us " turn of spell check
let g:rainbow_active = 1 " active rainbow
nmap <leader>p :RainbowToggle<cr> " set key map |
I am using rainbow with the default configuration. That means: install rainbow with vim-plug and set it
I want to remove the underline, as it seems that it is not correct.
When I call
:RainbowToggle
, the underline is gone.I have search google and try to read the vimscript of rainbow, but I found nothing useful.
operators
config?The text was updated successfully, but these errors were encountered: