00cfa7ffb0dd

Lots.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Fri, 21 Oct 2011 14:48:29 -0400
parents 7d77a8a00a2b
children d5b9b72cba9f
branches/tags (none)
files .hgsub .hgsubstate dotcss/khanacademy.org.css vim/.vimrc vim/bundle/peepopen/README.md vim/bundle/peepopen/plugin/peepopen.vim vim/bundle/rainbow/autoload/rainbow_parentheses.vim vim/bundle/rainbow/doc/rainbow_parentheses.txt vim/bundle/rainbow/plugin/rainbow_parentheses.vim

Changes

--- a/.hgsub	Wed Oct 19 14:35:48 2011 -0400
+++ b/.hgsub	Fri Oct 21 14:48:29 2011 -0400
@@ -14,7 +14,7 @@
 vim/bundle/strftimedammit = [hg]http://bitbucket.org/sjl/strftimedammit.vim/
 vim/bundle/easymotion = [git]git://github.com/Lokaltog/vim-easymotion.git
 vim/bundle/pydoc = [git]git://github.com/sjl/pydoc.vim.git
-vim/bundle/command-t = [git]git://github.com/vim-scripts/Command-T.git
+vim/bundle/ctrlp = [git]git://github.com/kien/ctrlp.vim.git
 vim/bundle/vim-orgmode = [git]git://github.com/jceb/vim-orgmode.git
 vim/bundle/slimv = [hg]http://bitbucket.org/sjl/slimv
 vim/bundle/threesome = [hg]http://bitbucket.org/sjl/threesome.vim
@@ -27,6 +27,7 @@
 vim/bundle/hammer = [git]git://github.com/robgleeson/hammer.vim.git
 vim/bundle/fugitive = [git]git://github.com/tpope/vim-fugitive.git
 vim/bundle/nosecompiler = [git]git://github.com/olethanh/Vim-nosecompiler.git
+vim/bundle/rainbow-parentheses = [git]git://github.com/kien/rainbow_parentheses.vim.git
 vim/bundle/AnsiEsc.vim = [git]git://github.com/vim-scripts/AnsiEsc.vim.git
 
 keymando/Plugins/abbrev = [git]git://github.com/keymando/abbrev.git
--- a/.hgsubstate	Wed Oct 19 14:35:48 2011 -0400
+++ b/.hgsubstate	Fri Oct 21 14:48:29 2011 -0400
@@ -2,7 +2,7 @@
 c060c94622e92e091b2c67499fdda16d91b68c01 mercurial/templates
 d2bb7878622e4c16203acf1c92a0f4bc7ac58003 vim/bundle/AnsiEsc.vim
 a41d5d52c39a31128e969e69acf800b198cb07f9 vim/bundle/ack
-bfdf714f8ea10a6bcba7a1375a5700b11077dcd9 vim/bundle/command-t
+8d99466502b40d7a5270abe6d763cf59383f4683 vim/bundle/ctrlp
 cdecdc56f938840cad250aecd58c1901f04c4d1b vim/bundle/easymotion
 1b7e4070f5f7b7522422f5b00a75b323cc314daf vim/bundle/fugitive
 91190e67720f852c17602504d5225d4e675b6499 vim/bundle/gundo
@@ -14,6 +14,7 @@
 2dd198c6c412b4ddd361b43586b01981e8383239 vim/bundle/nerdtree
 b7889db57c90824ff5092da4fdde9e05689f24fa vim/bundle/nosecompiler
 a0831b09f2026c3a3d52e253ffd139fe20a9360a vim/bundle/pydoc
+5aa885ece727e8d6e46723a9b9293b08530e7532 vim/bundle/rainbow-parentheses
 e201d578c03156a3dd7176973f2187f4e957f466 vim/bundle/slimv
 c6197a10ace82e0fe0c08e5cf5c017b7069a978e vim/bundle/sparkup
 6eec2c131213850ed65fd6da494dfd1a0d620a4e vim/bundle/strftimedammit
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dotcss/khanacademy.org.css	Fri Oct 21 14:48:29 2011 -0400
@@ -0,0 +1,2 @@
+.video_comments { margin-top: 20px; }
+.comments_container .comment { margin-bottom: 20px; }
--- a/vim/.vimrc	Wed Oct 19 14:35:48 2011 -0400
+++ b/vim/.vimrc	Fri Oct 21 14:48:29 2011 -0400
@@ -62,7 +62,8 @@
 set wildignore+=*.pyc                            " Python byte code
 set wildignore+=*.spl                            " compiled spelling word lists
 set wildignore+=*.sw?                            " Vim swap files
-set wildignore+=*.DS_Store?                      " OSX bullshit
+set wildignore+=*.DS_Store                       " OSX bullshit
+set wildignore+=migrations                       " Django migrations
 " }}}
 
 " Make Vim able to edit crontab files again.
@@ -870,6 +871,12 @@
 au FileType htmldjango setlocal commentstring={#\ %s\ #}
 
 " }}}
+" Ctrl-P {{{
+
+let g:ctrlp_map = '<leader>,'
+let g:ctrlp_working_path_mode = 0
+
+" }}}
 " Easymotion {{{
 
 let g:EasyMotion_do_mapping = 0
@@ -965,6 +972,11 @@
 au FileType python noremap <buffer> <localleader>dS :call ShowPyDoc('<C-R><C-A>', 1)<CR>
 
 " }}}
+" Rainbox Parentheses {{{
+
+nnoremap <leader>R :RainbowParenthesesToggle<cr>
+
+" }}}
 " Rope {{{
 
 let ropevim_enable_shortcuts = 0
@@ -1229,9 +1241,9 @@
     set go-=R
 
     if has("gui_macvim")
-        " PeepOpen on OS X, Command-T elsewhere.
-        macmenu &File.New\ Tab key=<nop>
-        map <leader><leader> <Plug>PeepOpen
+        " " PeepOpen on OS X, Command-T elsewhere.
+        " macmenu &File.New\ Tab key=<nop>
+        " map <leader><leader> <Plug>PeepOpen
 
         " Use the normal HIG movements, except for M-Up/Down
         let macvim_skip_cmd_opt_movement = 1
@@ -1256,10 +1268,10 @@
         imap <M-BS>         <C-w>
         inoremap <D-BS>     <esc>my0c`y
     else
-        map <leader><leader> :CommandT<cr>
+        " map <leader><leader> :CommandT<cr>
 
         " Dammit, PeepOpen
-        map gxxxxx <Plug>PeepOpen
+        " map gxxxxx <Plug>PeepOpen
     end
 
     highlight SpellBad term=underline gui=undercurl guisp=Orange
@@ -1273,10 +1285,10 @@
     set guicursor+=i-ci:ver20-iCursor
 else
     " Command-T if we don't have a GUI.
-    map <leader><leader> :CommandT<cr>
+    " map <leader><leader> :CommandT<cr>
 
     " Dammit, PeepOpen
-    map gxxxxx <Plug>PeepOpen
+    " map gxxxxx <Plug>PeepOpen
 endif
 
 " }}}
--- a/vim/bundle/peepopen/README.md	Wed Oct 19 14:35:48 2011 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +0,0 @@
-vim-peepopen
-=============
-
-A plugin for the Vim text editor. PeepOpen provides fuzzy search of filenames and paths in a programming project.
-
-Installation
-------------
-
-Get the PeepOpen.app and open it at least once to approve the Mac OS X security dialog.
-
-Standard:
-
-Copy `peepopen.vim` to your `~/.vim/plugin` directory.
-
-With Tim Pope's [Pathogen](http://github.com/tpope/vim-pathogen):
-
-Copy the entire `vim-peepopen` plugin directory to your `~/.vim/bundle` directory.
-
-Usage
------
-
-`<Leader>p` opens the current project directory with the PeepOpen application.
-
-Use the [vim-rooter](http://github.com/airblade/vim-rooter) plugin for automatic assignment of the current working directory for projects stored in Git.
-
-(Leader is mapped to '\' by default)
-
-Credits
--------
-
-- Initial Vim Plugin by [Andrew Stewart](http://www.airbladesoftware.com/).
-- Some plugin boilerplate from [Rein Henrichs](http://reinh.com/).
-
--- a/vim/bundle/peepopen/plugin/peepopen.vim	Wed Oct 19 14:35:48 2011 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,44 +0,0 @@
-" plugin/peepopen.vim
-" Author:   Geoffrey Grosenbach <boss@topfunky.com>
-" License:  MIT License
-
-" Install this file as plugin/peepopen.vim.
-
-" If you prefer Command-T, use this snippet in your .gvimrc:
-
-" if has("gui_macvim")
-"   macmenu &File.New\ Tab key=<nop>
-"   map <D-t> <Plug>PeepOpen
-" end
-
-" ============================================================================
-
-" Exit quickly when:
-" - this plugin was already loaded (or disabled)
-" - when 'compatible' is set
-if &cp || exists("g:peepopen_loaded") && g:peepopen_loaded
-  finish
-endif
-let g:peepopen_loaded = 1
-
-let s:save_cpo = &cpo
-set cpo&vim
-
-function s:LaunchPeepOpenViaVim()
-  let cwd = getcwd()
-  silent exe "!open 'peepopen://" . shellescape(cwd) . "?editor=MacVim'"
-endfunction
-
-command! PeepOpen :call <SID>LaunchPeepOpenViaVim()
-
-noremap <unique> <script> <Plug>PeepOpen <SID>Launch
-noremap <SID>Launch :call <SID>LaunchPeepOpenViaVim()<CR>
-
-if !hasmapto('<Plug>PeepOpen')
-  map <unique> <silent> <Leader>p <Plug>PeepOpen
-endif
-
-let &cpo = s:save_cpo
-unlet s:save_cpo
-
-" vim:set sw=2 sts=2:
--- a/vim/bundle/rainbow/autoload/rainbow_parentheses.vim	Wed Oct 19 14:35:48 2011 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,144 +0,0 @@
-"------------------------------------------------------------------------------
-"  Description: Rainbow colors for parentheses, based on rainbow_parenthsis.vim
-"               by Martin Krischik and others.  This version cleans things up,
-"               simplifies a few things, and changes "parenthsis" to
-"               "parentheses".
-"------------------------------------------------------------------------------
-
-" Section: highlight {{{1
-
-function! rainbow_parentheses#Activate()
-    highlight default level1c   guifg=OrangeRed1
-    highlight default level2c   guifg=LightGoldenRod1
-    highlight default level3c   guifg=DeepSkyBlue1
-    highlight default level4c   guifg=HotPink1
-    highlight default level5c   guifg=chartreuse1
-    highlight default level6c   guifg=OrangeRed1
-    highlight default level7c   guifg=LightGoldenRod1
-    highlight default level8c   guifg=DeepSkyBlue1
-    highlight default level9c   guifg=HotPink1
-    highlight default level10c  guifg=chartreuse1
-    highlight default level11c  guifg=OrangeRed1
-    highlight default level12c  guifg=LightGoldenRod1
-    highlight default level13c  guifg=DeepSkyBlue1
-    highlight default level14c  guifg=HotPink1
-    highlight default level15c  guifg=chartreuse1
-    highlight default level16c  guifg=Yellow
-    let s:rainbow_paren_active = 1
-endfunction
-
-function! rainbow_parentheses#Clear()
-    let i = 0
-    while i != 16
-        let i = i + 1
-        exe 'highlight clear level' . i . 'c'
-    endwhile
-    let s:rainbow_paren_active = 0
-endfunction
-
-function! rainbow_parentheses#Toggle ()
-    if !exists('s:rainbow_paren_active')
-        call rainbow_parentheses#LoadRound()
-    endif
-    if s:rainbow_paren_active != 0
-        call rainbow_parentheses#Clear()
-    else
-        call rainbow_parentheses#Activate()
-    endif
-endfunction
-
-" Section: syntax {{{1
-
-syntax cluster  rainbow_parentheses contains=@TOP,level1,level2,level3,level4,level5,level6,level7,level8,level9,level10,level11,level12,level13,level14,level15,level16,NoInParens
-
-" Subsection: parentheses or round brackets: {{{2
-"
-function! rainbow_parentheses#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 s:rainbow_paren_active = 0
-endfunction
-
-" Subsection: box brackets or square brackets: {{{2
-"
-function! rainbow_parentheses#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 s:rainbow_paren_active = 0
-endfunction
-
-" Subsection: curly brackets or braces: {{{2
-"
-function! rainbow_parentheses#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 s:rainbow_paren_active = 0
-endfunction
-
-" Subsection: angle brackets or chevrons: {{{2
-"
-function! rainbow_parentheses#LoadChevrons ()
-    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 s:rainbow_paren_active = 0
-endfunction
-
-" }}}1
-
-finish
--- a/vim/bundle/rainbow/doc/rainbow_parentheses.txt	Wed Oct 19 14:35:48 2011 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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
--- a/vim/bundle/rainbow/plugin/rainbow_parentheses.vim	Wed Oct 19 14:35:48 2011 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-"------------------------------------------------------------------------------
-"  Description: Rainbow colors for parentheses, based on rainbow_parenthsis.vim
-"               by Martin Krischik.  This version cleans things up, simplifies
-"               a few things, and changes "parenthsis" to "parentheses".
-"------------------------------------------------------------------------------
-
-command! -nargs=0 RainbowParenthesesToggle       call rainbow_parentheses#Toggle()
-command! -nargs=0 RainbowParenthesesLoadSquare   call rainbow_parentheses#LoadSquare()
-command! -nargs=0 RainbowParenthesesLoadRound    call rainbow_parentheses#LoadRound()
-command! -nargs=0 RainbowParenthesesLoadBraces   call rainbow_parentheses#LoadBraces()
-command! -nargs=0 RainbowParenthesesLoadChevrons call rainbow_parentheses#Chevrons()
-
-finish