summaryrefslogtreecommitdiffstats
path: root/.vim/plugin/rainbow_parenthsis.vim
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xssn.at>2010-12-04 23:01:02 +0100
committerFlorian Pritz <bluewind@xssn.at>2010-12-04 23:01:02 +0100
commit70f0ef31d89e361cb7c37de9b1b73a829c41c9a4 (patch)
treece5b4a5c9c20732e28676c913bca97ef26669360 /.vim/plugin/rainbow_parenthsis.vim
parentaaeadcdc572d127939e239a93bec09fa1a7475a3 (diff)
downloaddotfiles-70f0ef31d89e361cb7c37de9b1b73a829c41c9a4.tar.gz
dotfiles-70f0ef31d89e361cb7c37de9b1b73a829c41c9a4.tar.xz
vim: add new plugins; add movement keymappings
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to '.vim/plugin/rainbow_parenthsis.vim')
-rw-r--r--.vim/plugin/rainbow_parenthsis.vim40
1 files changed, 40 insertions, 0 deletions
diff --git a/.vim/plugin/rainbow_parenthsis.vim b/.vim/plugin/rainbow_parenthsis.vim
new file mode 100644
index 0000000..e5e3806
--- /dev/null
+++ b/.vim/plugin/rainbow_parenthsis.vim
@@ -0,0 +1,40 @@
+"------------------------------------------------------------------------------
+" 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