Vim の括弧をカラフルにする
() をカラフルにハイライトする事で対応する括弧をわかりやすくします。
[vimrc]
" () をハイライト autocmd FileType * :RainbowParenthesesLoadRound " C++ の場合は、<> もハイライト autocmd FileType cpp :RainbowParenthesesLoadChevrons " ハイライトを切り替えるキーマップ nnoremap <silent> <Space>rr :RainbowParenthesesToggle<CR>
[コマンド]
:RainbowParenthesesToggle | Toggle it on/off |
---|---|
:RainbowParenthesesLoadRound | (), the default when toggling |
:RainbowParenthesesLoadSquare | [] |
:RainbowParenthesesLoadBraces | {} |
:RainbowParenthesesLoadChevrons | <> |
[注意]
filetype を切り替える事で RainbowParenthesesLoadRound の設定がリセットされるみたいです。