From e23d7a9f7363bdc69e95a1df31e093db15459fcf Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Wed, 5 Jun 2013 09:34:53 -0500 Subject: A whole bunch of new additions to the submodules --- vim/plugin/AlignMapsPlugin.vim | 242 --- vim/plugin/AlignPlugin.vim | 41 - vim/plugin/NERD_commenter.vim | 2790 -------------------------- vim/plugin/NERD_tree.vim | 4049 -------------------------------------- vim/plugin/SearchComplete.vim | 100 - vim/plugin/ZoomWinPlugin.vim | 49 - vim/plugin/ack.vim | 79 - vim/plugin/cecutil.vim | 510 ----- vim/plugin/color_sample_pack.vim | 164 -- vim/plugin/conque_term.vim | 93 - vim/plugin/delimitMate.vim | 434 ---- vim/plugin/endwise.vim | 134 -- 12 files changed, 8685 deletions(-) delete mode 100644 vim/plugin/AlignMapsPlugin.vim delete mode 100644 vim/plugin/AlignPlugin.vim delete mode 100644 vim/plugin/NERD_commenter.vim delete mode 100644 vim/plugin/NERD_tree.vim delete mode 100644 vim/plugin/SearchComplete.vim delete mode 100644 vim/plugin/ZoomWinPlugin.vim delete mode 100644 vim/plugin/ack.vim delete mode 100644 vim/plugin/cecutil.vim delete mode 100644 vim/plugin/color_sample_pack.vim delete mode 100644 vim/plugin/conque_term.vim delete mode 100644 vim/plugin/delimitMate.vim delete mode 100644 vim/plugin/endwise.vim (limited to 'vim/plugin') diff --git a/vim/plugin/AlignMapsPlugin.vim b/vim/plugin/AlignMapsPlugin.vim deleted file mode 100644 index eed0293..0000000 --- a/vim/plugin/AlignMapsPlugin.vim +++ /dev/null @@ -1,242 +0,0 @@ -" AlignMapsPlugin: Alignment maps based upon and -" Maintainer: Dr. Charles E. Campbell, Jr. -" Date: Mar 03, 2009 -" -" NOTE: the code herein needs vim 6.0 or later -" needs v6 or later -" needs v5 or later -" Copyright: Copyright (C) 1999-2008 Charles E. Campbell, Jr. {{{1 -" Permission is hereby granted to use and distribute this code, -" with or without modifications, provided that this copyright -" notice is copied with it. Like anything else that's free, -" AlignMaps.vim is provided *as is* and comes with no warranty -" of any kind, either expressed or implied. By using this -" plugin, you agree that in no event will the copyright -" holder be liable for any damages resulting from the use -" of this software. -" -" Usage: {{{1 -" Use 'a to mark beginning of to-be-aligned region, Alternative: use V -" move cursor to end of region, and execute map. (linewise visual mode) to -" The maps also set up marks 'y and 'z, and retain mark region, execute same -" 'a at the beginning of region. map. Uses 'a, 'y, and 'z. -" -" The start/end wrappers save and restore marks 'y and 'z. -" -" Although the comments indicate the maps use a leading backslash, -" actually they use (:he mapleader), so the user can -" specify that the maps start how he or she prefers. -" -" Note: these maps all use . -" -" Romans 1:20 For the invisible things of Him since the creation of the {{{1 -" world are clearly seen, being perceived through the things that are -" made, even His everlasting power and divinity; that they may be -" without excuse. - -" --------------------------------------------------------------------- -" Load Once: {{{1 -if &cp || exists("g:loaded_AlignMapsPlugin") - finish -endif -let s:keepcpo = &cpo -let g:loaded_AlignMapsPlugin = "v41" -set cpo&vim - -" ===================================================================== -" Maps: {{{1 - -" --------------------------------------------------------------------- -" WS: wrapper start map (internal) {{{2 -" Produces a blank line above and below, marks with 'y and 'z -if !hasmapto('WrapperStart') - map WS AlignMapsWrapperStart -endif -nmap