From 72efcdab938b0aa53316f784964d9e971a06b08b Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Wed, 29 Jan 2014 10:37:35 +0100 Subject: some new vim modules Signed-off-by: Florian Pritz --- .vim/autoload/rainbow_parenthsis.vim | 172 ----------------------------------- .vim/bundle/YouCompleteMe | 1 + .vim/bundle/clang_complete | 1 + .vim/bundle/echodoc.vim | 1 + .vim/bundle/neobundle.vim | 1 + .vim/bundle/neosnippet-snippets | 1 + .vim/bundle/neosnippet.vim | 1 + .vim/bundle/vim-marching | 1 + .vim/bundle/vim-reunions | 1 + .vim/bundle/vimproc.vim | 1 + .vim/doc/rainbow_parenthsis.txt | 88 ------------------ .vim/plugin/rainbow_parenthsis.vim | 40 -------- .vim/rainbow_parenthsis_options.vim | 55 ----------- 13 files changed, 9 insertions(+), 355 deletions(-) delete mode 100644 .vim/autoload/rainbow_parenthsis.vim create mode 160000 .vim/bundle/YouCompleteMe create mode 160000 .vim/bundle/clang_complete create mode 160000 .vim/bundle/echodoc.vim create mode 160000 .vim/bundle/neobundle.vim create mode 160000 .vim/bundle/neosnippet-snippets create mode 160000 .vim/bundle/neosnippet.vim create mode 160000 .vim/bundle/vim-marching create mode 160000 .vim/bundle/vim-reunions create mode 160000 .vim/bundle/vimproc.vim delete mode 100644 .vim/doc/rainbow_parenthsis.txt delete mode 100644 .vim/plugin/rainbow_parenthsis.vim delete mode 100644 .vim/rainbow_parenthsis_options.vim (limited to '.vim') diff --git a/.vim/autoload/rainbow_parenthsis.vim b/.vim/autoload/rainbow_parenthsis.vim deleted file mode 100644 index ffbd4fe..0000000 --- a/.vim/autoload/rainbow_parenthsis.vim +++ /dev/null @@ -1,172 +0,0 @@ -"------------------------------------------------------------------------------ -" Description: Rainbow colors for parenthsis -" $Id: rainbow_parenthsis.vim 50 2007-10-08 18:42:51Z krischik@users.sourceforge.net $ -" Copyright: Copyright (C) 2007 Martin Krischik -" Maintainer: Martin Krischik (krischik@users.sourceforge.net) -" John Gilmore -" Luc Hermitte (hermitte@free.fr) -" $Author: krischik@users.sourceforge.net $ -" $Date: 2007-10-08 20:42:51 +0200 (Mo, 08 Okt 2007) $ -" Version: 4.0 -" $Revision: 50 $ -" $HeadURL: https://vim-scripts.googlecode.com/svn/trunk/1561%20Rainbow%20Parenthsis%20Bundle/autoload/rainbow_parenthsis.vim $ -" History: 24.05.2006 MK Unified Headers -" 15.10.2006 MK Bram's suggestion for runtime integration -" 06.09.2007 LH Buffer friendly (can be used in different buffers), -" can be toggled -" 09.09.2007 MK Use on LH's suggestion but use autoload to -" impove memory consumtion and startup performance -" 09.10.2007 MK Now with round, square brackets, curly and angle -" brackets. -" Usage: copy to autoload directory. -"------------------------------------------------------------------------------ -" This is a simple script. It extends the syntax highlighting to -" highlight each matching set of parens in different colors, to make -" it visually obvious what matches which. -" -" Obviously, most useful when working with lisp or Ada. But it's also nice other -" times. -"------------------------------------------------------------------------------ - -" Section: highlight {{{1 - -function rainbow_parenthsis#Activate() - highlight default level1c ctermbg=LightGray ctermfg=brown guibg=WhiteSmoke guifg=RoyalBlue3 - highlight default level2c ctermbg=LightGray ctermfg=Darkblue guibg=WhiteSmoke guifg=SeaGreen3 - highlight default level3c ctermbg=LightGray ctermfg=darkgray guibg=WhiteSmoke guifg=DarkOrchid3 - highlight default level4c ctermbg=LightGray ctermfg=darkgreen guibg=WhiteSmoke guifg=firebrick3 - highlight default level5c ctermbg=LightGray ctermfg=darkcyan guibg=AntiqueWhite guifg=RoyalBlue3 - highlight default level6c ctermbg=LightGray ctermfg=darkred guibg=AntiqueWhite guifg=SeaGreen3 - highlight default level7c ctermbg=LightGray ctermfg=darkmagenta guibg=AntiqueWhite guifg=DarkOrchid3 - highlight default level8c ctermbg=LightGray ctermfg=brown guibg=AntiqueWhite guifg=firebrick3 - highlight default level9c ctermbg=LightGray ctermfg=gray guibg=LemonChiffon guifg=RoyalBlue3 - highlight default level10c ctermbg=LightGray ctermfg=black guibg=LemonChiffon guifg=SeaGreen3 - highlight default level11c ctermbg=LightGray ctermfg=darkmagenta guibg=LemonChiffon guifg=DarkOrchid3 - highlight default level12c ctermbg=LightGray ctermfg=Darkblue guibg=LemonChiffon guifg=firebrick3 - highlight default level13c ctermbg=LightGray ctermfg=darkgreen guibg=AliceBlue guifg=RoyalBlue3 - highlight default level14c ctermbg=LightGray ctermfg=darkcyan guibg=AliceBlue guifg=SeaGreen3 - highlight default level15c ctermbg=LightGray ctermfg=darkred guibg=AliceBlue guifg=DarkOrchid3 - highlight default level16c ctermbg=LightGray ctermfg=red guibg=AliceBlue guifg=firebrick3 - let rainbow_parenthesis#active = 1 -endfunction - -function rainbow_parenthsis#Clear() - let i = 0 - while i != 16 - let i = i + 1 - exe 'highlight clear level' . i . 'c' - endwhile - let rainbow_parenthesis#active = 0 -endfunction - -function rainbow_parenthsis#Toggle () - if ! exists('rainbow_parenthesis#active') - call rainbow_parenthsis#LoadRound () - endif - if rainbow_parenthesis#active != 0 - call rainbow_parenthsis#Clear () - else - call rainbow_parenthsis#Activate () - endif -endfunction - -" Section: syntax {{{1 -" -" Subsection: parentheses or round brackets: {{{2 -" -function rainbow_parenthsis#LoadRound () - syntax region level1 matchgroup=level1c start=/(/ end=/)/ contains=TOP,level1,level2,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level2 matchgroup=level2c start=/(/ end=/)/ contains=TOP,level2,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level3 matchgroup=level3c start=/(/ end=/)/ contains=TOP,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level4 matchgroup=level4c start=/(/ end=/)/ contains=TOP,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level5 matchgroup=level5c start=/(/ end=/)/ contains=TOP,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level6 matchgroup=level6c start=/(/ end=/)/ contains=TOP,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level7 matchgroup=level7c start=/(/ end=/)/ contains=TOP,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level8 matchgroup=level8c start=/(/ end=/)/ contains=TOP,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level9 matchgroup=level9c start=/(/ end=/)/ contains=TOP,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level10 matchgroup=level10c start=/(/ end=/)/ contains=TOP,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level11 matchgroup=level11c start=/(/ end=/)/ contains=TOP,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level12 matchgroup=level12c start=/(/ end=/)/ contains=TOP,level12,level13,level14,level15, level16,NoInParens - syntax region level13 matchgroup=level13c start=/(/ end=/)/ contains=TOP,level13,level14,level15, level16,NoInParens - syntax region level14 matchgroup=level14c start=/(/ end=/)/ contains=TOP,level14,level15, level16,NoInParens - syntax region level15 matchgroup=level15c start=/(/ end=/)/ contains=TOP,level15, level16,NoInParens - syntax region level16 matchgroup=level16c start=/(/ end=/)/ contains=TOP,level16,NoInParens - let rainbow_parenthesis#active = 0 -endfunction - -" Subsection: box brackets or square brackets: {{{2 -" -function rainbow_parenthsis#LoadSquare () - syntax region level1 matchgroup=level1c start=/\[/ end=/\]/ contains=TOP,level1,level2,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level2 matchgroup=level2c start=/\[/ end=/\]/ contains=TOP,level2,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level3 matchgroup=level3c start=/\[/ end=/\]/ contains=TOP,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level4 matchgroup=level4c start=/\[/ end=/\]/ contains=TOP,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level5 matchgroup=level5c start=/\[/ end=/\]/ contains=TOP,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level6 matchgroup=level6c start=/\[/ end=/\]/ contains=TOP,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level7 matchgroup=level7c start=/\[/ end=/\]/ contains=TOP,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level8 matchgroup=level8c start=/\[/ end=/\]/ contains=TOP,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level9 matchgroup=level9c start=/\[/ end=/\]/ contains=TOP,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level10 matchgroup=level10c start=/\[/ end=/\]/ contains=TOP,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level11 matchgroup=level11c start=/\[/ end=/\]/ contains=TOP,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level12 matchgroup=level12c start=/\[/ end=/\]/ contains=TOP,level12,level13,level14,level15, level16,NoInParens - syntax region level13 matchgroup=level13c start=/\[/ end=/\]/ contains=TOP,level13,level14,level15, level16,NoInParens - syntax region level14 matchgroup=level14c start=/\[/ end=/\]/ contains=TOP,level14,level15, level16,NoInParens - syntax region level15 matchgroup=level15c start=/\[/ end=/\]/ contains=TOP,level15, level16,NoInParens - syntax region level16 matchgroup=level16c start=/\[/ end=/\]/ contains=TOP,level16,NoInParens - let rainbow_parenthesis#active = 0 -endfunction - -" Subsection: curly brackets or braces: {{{2 -" -function rainbow_parenthsis#LoadBraces () - syntax region level1 matchgroup=level1c start=/{/ end=/}/ contains=TOP,level1,level2,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level2 matchgroup=level2c start=/{/ end=/}/ contains=TOP,level2,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level3 matchgroup=level3c start=/{/ end=/}/ contains=TOP,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level4 matchgroup=level4c start=/{/ end=/}/ contains=TOP,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level5 matchgroup=level5c start=/{/ end=/}/ contains=TOP,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level6 matchgroup=level6c start=/{/ end=/}/ contains=TOP,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level7 matchgroup=level7c start=/{/ end=/}/ contains=TOP,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level8 matchgroup=level8c start=/{/ end=/}/ contains=TOP,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level9 matchgroup=level9c start=/{/ end=/}/ contains=TOP,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level10 matchgroup=level10c start=/{/ end=/}/ contains=TOP,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level11 matchgroup=level11c start=/{/ end=/}/ contains=TOP,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level12 matchgroup=level12c start=/{/ end=/}/ contains=TOP,level12,level13,level14,level15, level16,NoInParens - syntax region level13 matchgroup=level13c start=/{/ end=/}/ contains=TOP,level13,level14,level15, level16,NoInParens - syntax region level14 matchgroup=level14c start=/{/ end=/}/ contains=TOP,level14,level15, level16,NoInParens - syntax region level15 matchgroup=level15c start=/{/ end=/}/ contains=TOP,level15, level16,NoInParens - syntax region level16 matchgroup=level16c start=/{/ end=/}/ contains=TOP,level16,NoInParens - let rainbow_parenthesis#active = 0 -endfunction - -" Subsection: angle brackets or chevrons: {{{2 -" -function rainbow_parenthsis#LoadChevrons () - syntax region level1 matchgroup=level1c start=// contains=TOP,level1,level2,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level2 matchgroup=level2c start=// contains=TOP,level2,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level3 matchgroup=level3c start=// contains=TOP,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level4 matchgroup=level4c start=// contains=TOP,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level5 matchgroup=level5c start=// contains=TOP,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level6 matchgroup=level6c start=// contains=TOP,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level7 matchgroup=level7c start=// contains=TOP,level7,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level8 matchgroup=level8c start=// contains=TOP,level8,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level9 matchgroup=level9c start=// contains=TOP,level9,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level10 matchgroup=level10c start=// contains=TOP,level10,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level11 matchgroup=level11c start=// contains=TOP,level11,level12,level13,level14,level15, level16,NoInParens - syntax region level12 matchgroup=level12c start=// contains=TOP,level12,level13,level14,level15, level16,NoInParens - syntax region level13 matchgroup=level13c start=// contains=TOP,level13,level14,level15, level16,NoInParens - syntax region level14 matchgroup=level14c start=// contains=TOP,level14,level15, level16,NoInParens - syntax region level15 matchgroup=level15c start=// contains=TOP,level15, level16,NoInParens - syntax region level16 matchgroup=level16c start=// contains=TOP,level16,NoInParens - let rainbow_parenthesis#active = 0 -endfunction - - " }}}1 -finish - -"------------------------------------------------------------------------------ -" Copyright (C) 2006 Martin Krischik -" -" Vim is Charityware - see ":help license" or uganda.txt for licence details. -"------------------------------------------------------------------------------ -" vim: textwidth=78 wrap tabstop=8 shiftwidth=4 softtabstop=4 expandtab -" vim: filetype=vim foldmethod=marker diff --git a/.vim/bundle/YouCompleteMe b/.vim/bundle/YouCompleteMe new file mode 160000 index 0000000..56e6941 --- /dev/null +++ b/.vim/bundle/YouCompleteMe @@ -0,0 +1 @@ +Subproject commit 56e69412e3e36e3a0713d5cd9191a4ad26cb47be diff --git a/.vim/bundle/clang_complete b/.vim/bundle/clang_complete new file mode 160000 index 0000000..101ab71 --- /dev/null +++ b/.vim/bundle/clang_complete @@ -0,0 +1 @@ +Subproject commit 101ab718578d9afcf7e9df51c7004ba41ee99eba diff --git a/.vim/bundle/echodoc.vim b/.vim/bundle/echodoc.vim new file mode 160000 index 0000000..4b894e9 --- /dev/null +++ b/.vim/bundle/echodoc.vim @@ -0,0 +1 @@ +Subproject commit 4b894e9a8f9fe8fb4b102e21dba9870ed5383833 diff --git a/.vim/bundle/neobundle.vim b/.vim/bundle/neobundle.vim new file mode 160000 index 0000000..d34d23c --- /dev/null +++ b/.vim/bundle/neobundle.vim @@ -0,0 +1 @@ +Subproject commit d34d23c756eb614043e2d2e6f20325e7e9ac3b40 diff --git a/.vim/bundle/neosnippet-snippets b/.vim/bundle/neosnippet-snippets new file mode 160000 index 0000000..d8e1323 --- /dev/null +++ b/.vim/bundle/neosnippet-snippets @@ -0,0 +1 @@ +Subproject commit d8e13234334fcbbdbf8bf17b7c6182b98e24c80f diff --git a/.vim/bundle/neosnippet.vim b/.vim/bundle/neosnippet.vim new file mode 160000 index 0000000..cf1211c --- /dev/null +++ b/.vim/bundle/neosnippet.vim @@ -0,0 +1 @@ +Subproject commit cf1211c242f079057f293c226b13b3b6a9ee40a1 diff --git a/.vim/bundle/vim-marching b/.vim/bundle/vim-marching new file mode 160000 index 0000000..4bd269d --- /dev/null +++ b/.vim/bundle/vim-marching @@ -0,0 +1 @@ +Subproject commit 4bd269da1dc14ab6eb6548699083e8f84ef7ad0b diff --git a/.vim/bundle/vim-reunions b/.vim/bundle/vim-reunions new file mode 160000 index 0000000..42cf838 --- /dev/null +++ b/.vim/bundle/vim-reunions @@ -0,0 +1 @@ +Subproject commit 42cf8386bc79849737b1b5b1b14b23b77404ec0e diff --git a/.vim/bundle/vimproc.vim b/.vim/bundle/vimproc.vim new file mode 160000 index 0000000..11bd685 --- /dev/null +++ b/.vim/bundle/vimproc.vim @@ -0,0 +1 @@ +Subproject commit 11bd6853b25f73f3729cccbb9282fecade2bf50a diff --git a/.vim/doc/rainbow_parenthsis.txt b/.vim/doc/rainbow_parenthsis.txt deleted file mode 100644 index c8f15ec..0000000 --- a/.vim/doc/rainbow_parenthsis.txt +++ /dev/null @@ -1,88 +0,0 @@ -*rainbow_parenthsis.txt* Colorize Parenthsis - -Author: Martin Krischik (krischik@users.sourceforge.net) - John Gilmore - Luc Hermitte (hermitte@free.fr) - -For Vim version 7.0 and above -Last change: 09 Oct, 2007 - -1. Overview |rainbow_parenthsis-about| -2. Commands |rainbow_parenthsis-commands| -2. Functions |rainbow_parenthsis-functions| -3. Configuration |rainbow_parenthsis-configure| - -============================================================================== - *rainbow_parenthsis-about* -1. Overview~ - -rainbow_parenthsis allows you to view the contents of a file in real time. When a -change in the file is detected, the window displaying the file is updated and -repositioned to the last line. - -The update is not exactly real time, but usually updates within a few seconds -of the file change. The update interval of the output is determined by the -|updatetime| parameter, along with continued usage of Vim. This means that if -you are not doing any editing or motion commands, the preview window will not -be updated. See |CursorHold| for more information. - -Because this window becomes the preview window, it will accept all related -commands. For more information, see |preview-window|. - -============================================================================== - *rainbow_parenthsis-commands* -2. Commands~ - -The rainbow_parenthsis plugin does not create any automatic mappings, but provides the -following commands: - - *:ToggleRaibowParenthesis* -|:ToggleRaibowParenthesis| - Manualy start rainbow parenthesis.. If no bracket type has been loaded - yet then round brackets will be loaded by default. - -============================================================================== - *rainbow_parenthsis-functions* -2. Functions~ - -|rainbow_parenthsis#Activate()| *rainbow_parenthsis#Activate()* - Acticate the loaded parenthsis - -|rainbow_parenthsis#Clear()| *rainbow_parenthsis#Clear()* - Deactivate rainbow parenthesis - -|rainbow_parenthsis#Toggle()| *rainbow_parenthsis#Toggle()* - Toogles rainbow parenthesis status. If no bracket type has been loaded - yet then round brackets will be loaded. - -|rainbow_parenthsis#LoadRound()| *rainbow_parenthsis#LoadRound()* - Load syntax for parenthesis or round brackets '(' ')' - This will be - loaded by default if nothing else has been loaded. - -|rainbow_parenthsis#LoadSquare()| *rainbow_parenthsis#LoadSquare()* - Load syntax for box brackets or square brackets '[' ']' - -|rainbow_parenthsis#LoadBraces()| *rainbow_parenthsis#LoadBraces()* - Load syntax for curly brackets or braces '{' '}' - -|rainbow_parenthsis#LoadChevrons()| *rainbow_parenthsis#LoadChevrons()* - Load syntax for angle brackets or chevrons '<' '>' - -============================================================================== - *rainbow_parenthsis-configure* -3. Configuration~ - -The best way to use rainbow_parenthsis is to add it to sytax plugin of any -filetype used: -> - >if exists("g:btm_rainbow_color") && g:btm_rainbow_color - > call rainbow_parenthsis#LoadSquare () - > call rainbow_parenthsis#LoadRound () - > call rainbow_parenthsis#Activate () - >endif -> -This way you don't need to load all options available but only those which -are of importance to the actual filetype. - -============================================================================== -vim:textwidth=78:tabstop=8:noexpandtab:filetype=help diff --git a/.vim/plugin/rainbow_parenthsis.vim b/.vim/plugin/rainbow_parenthsis.vim deleted file mode 100644 index e5e3806..0000000 --- a/.vim/plugin/rainbow_parenthsis.vim +++ /dev/null @@ -1,40 +0,0 @@ -"------------------------------------------------------------------------------ -" Description: Rainbow colors for parenthsis -" $Id: rainbow_parenthsis.vim 29 2007-09-24 11:40:36Z krischik@users.sourceforge.net $ -" Copyright: Copyright (C) 2006 Martin Krischik -" Maintainer: Martin Krischik -" John Gilmore -" $Author: krischik@users.sourceforge.net $ -" $Date: 2007-09-24 13:40:36 +0200 (Mo, 24 Sep 2007) $ -" Version: 4.0 -" $Revision: 29 $ -" $HeadURL: https://vim-scripts.googlecode.com/svn/trunk/1561%20Rainbow%20Parenthsis%20Bundle/plugin/rainbow_parenthsis.vim $ -" History: 24.05.2006 MK Unified Headers -" 15.10.2006 MK Bram's suggestion for runtime integration -" 06.09.2007 LH Buffer friendly (can be used in different buffers), -" can be toggled -" 09.09.2007 MK Use on LH's suggestion but use autoload to -" impove memory consumtion and startup performance -" 09.10.2007 MK Now with round, square brackets, curly and angle -" brackets. -" Usage: copy to plugin directory. -"------------------------------------------------------------------------------ -" This is a simple script. It extends the syntax highlighting to -" highlight each matching set of parens in different colors, to make -" it visually obvious what matches which. -" -" Obviously, most useful when working with lisp or Ada. But it's also nice other -" times. -"------------------------------------------------------------------------------ - -command! -nargs=0 ToggleRaibowParenthesis call rainbow_parenthsis#Toggle() - -finish - -"------------------------------------------------------------------------------ -" Copyright (C) 2006 Martin Krischik -" -" Vim is Charityware - see ":help license" or uganda.txt for licence details. -"------------------------------------------------------------------------------ -" vim: textwidth=78 wrap tabstop=8 shiftwidth=4 softtabstop=4 expandtab -" vim: filetype=vim foldmethod=marker diff --git a/.vim/rainbow_parenthsis_options.vim b/.vim/rainbow_parenthsis_options.vim deleted file mode 100644 index a36a9ad..0000000 --- a/.vim/rainbow_parenthsis_options.vim +++ /dev/null @@ -1,55 +0,0 @@ -"------------------------------------------------------------------------------ -" Description: Options setable by the rainbow_parenthsis plugin -" $Id: rainbow_parenthsis_options.vim 29 2007-09-24 11:40:36Z krischik@users.sourceforge.net $ -" Copyright: Copyright (C) 2006 Martin Krischik -" Maintainer: Martin Krischik (krischik@users.sourceforge.net) -" $Author: krischik@users.sourceforge.net $ -" $Date: 2007-09-24 13:40:36 +0200 (Mo, 24 Sep 2007) $ -" Version: 4.0 -" $Revision: 29 $ -" $HeadURL: https://vim-scripts.googlecode.com/svn/trunk/1561%20Rainbow%20Parenthsis%20Bundle/rainbow_parenthsis_options.vim $ -" History: 17.11.2006 MK rainbow_parenthsis_Options -" 01.01.2007 MK Bug fixing -" 09.10.2007 MK Now with round, square brackets, curly and angle -" brackets. -" Usage: copy content into your .vimrc and change options to your -" likeing. -" Help Page: rainbow_parenthsis.txt -"------------------------------------------------------------------------------ - -echoerr 'It is suggested to copy the content of ada_options into .vimrc!' -finish " 1}}} - -" Section: rainbow_parenthsis options {{{1 - -" }}}1 - -" Section: Vimball options {{{1 -:set noexpandtab fileformat=unix encoding=utf-8 -:31,34 MkVimball rainbow_parenthsis-4.0.vba - -autoload/rainbow_parenthsis.vim -doc/rainbow_parenthsis.txt -plugin/rainbow_parenthsis.vim -rainbow_parenthsis_options.vim - -" }}}1 - -" Section: Tar options {{{1 - -tar --create --bzip2 \ - --file="rainbow_parenthsis-4.0.tar.bz2" \ - rainbow_parenthsis_options.vim \ - doc/rainbow_parenthsis.txt \ - autoload/rainbow_parenthsis.vim \ - plugin/rainbow_parenthsis.vim ; - -" }}}1 - -"------------------------------------------------------------------------------ -" Copyright (C) 2006 Martin Krischik -" -" Vim is Charityware - see ":help license" or uganda.txt for licence derainbow_parenthsiss. -"------------------------------------------------------------------------------ -" vim: textwidth=0 nowrap tabstop=8 shiftwidth=3 softtabstop=3 noexpandtab -" vim: foldmethod=marker -- cgit v1.2.3-24-g4f1b