We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb8baa5 commit bb14cbeCopy full SHA for bb14cbe
plugin/rainbow_parentheses.vim
@@ -4,6 +4,14 @@
4
"==============================================================================
5
" GetLatestVimScripts: 3772 1 :AutoInstall: rainbow_parentheses.zip
6
7
+" Exit quickly when:
8
+" - this plugin was already loaded (or disabled)
9
+" - when 'compatible' is set
10
+if exists("g:loaded_rainbow_parentheses") || &cp
11
+ finish
12
+endif
13
+let g:loaded_rainbow_parentheses = 1
14
+
15
com! RainbowParenthesesToggle cal rainbow_parentheses#toggle()
16
com! RainbowParenthesesToggleAll cal rainbow_parentheses#toggleall()
17
com! RainbowParenthesesActivate cal rainbow_parentheses#activate()
0 commit comments