From 6ae6b994f481815ac0146b26aa52ea4468f358c5 Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Wed, 12 Oct 2011 19:28:11 +0200 Subject: [PATCH] Pathogen update and refactoring - Now using g:pathogen_disabled instead of symlinking - Resetting submodules to start over cleanly - Pathogen is a submodule too now --- .gitmodules | 54 +--------- autoload/pathogen.vim | 142 -------------------------- bundle.available/ack.vim | 1 - bundle.available/closetag | 1 - bundle.available/command-t | 1 - bundle.available/delimitmate | 1 - bundle.available/fugitive | 1 - bundle.available/git-vim | 1 - bundle.available/matchit | 1 - bundle.available/nerdcommenter | 1 - bundle.available/pyflakes | 1 - bundle.available/supertab | 1 - bundle.available/tagbar | 1 - bundle.available/vcscommand | 1 - bundle.available/vim-coffee-script | 1 - bundle.available/vim-colors-solarized | 1 - bundle.available/vim-less | 1 - bundle.available/vim-markdown | 1 - bundle.available/vim-surround | 1 - bundle/ack.vim | 1 - bundle/closetag | 1 - bundle/command-t | 1 - bundle/delimitmate | 1 - bundle/fugitive | 1 - bundle/git-vim | 1 - bundle/nerdcommenter | 1 - bundle/supertab | 1 - bundle/tagbar | 1 - bundle/vim-coffee-script | 1 - bundle/vim-colors-solarized | 1 - bundle/vim-less | 1 - bundle/vim-markdown | 1 - bundle/vim-surround | 1 - vimrc | 32 +++--- 34 files changed, 20 insertions(+), 239 deletions(-) delete mode 100644 autoload/pathogen.vim delete mode 160000 bundle.available/ack.vim delete mode 160000 bundle.available/closetag delete mode 160000 bundle.available/command-t delete mode 160000 bundle.available/delimitmate delete mode 160000 bundle.available/fugitive delete mode 160000 bundle.available/git-vim delete mode 160000 bundle.available/matchit delete mode 160000 bundle.available/nerdcommenter delete mode 160000 bundle.available/pyflakes delete mode 160000 bundle.available/supertab delete mode 160000 bundle.available/tagbar delete mode 160000 bundle.available/vcscommand delete mode 160000 bundle.available/vim-coffee-script delete mode 160000 bundle.available/vim-colors-solarized delete mode 160000 bundle.available/vim-less delete mode 160000 bundle.available/vim-markdown delete mode 160000 bundle.available/vim-surround delete mode 120000 bundle/ack.vim delete mode 120000 bundle/closetag delete mode 120000 bundle/command-t delete mode 120000 bundle/delimitmate delete mode 120000 bundle/fugitive delete mode 120000 bundle/git-vim delete mode 120000 bundle/nerdcommenter delete mode 120000 bundle/supertab delete mode 120000 bundle/tagbar delete mode 120000 bundle/vim-coffee-script delete mode 120000 bundle/vim-colors-solarized delete mode 120000 bundle/vim-less delete mode 120000 bundle/vim-markdown delete mode 120000 bundle/vim-surround diff --git a/.gitmodules b/.gitmodules index af99c27..882a27f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,51 +1,3 @@ -[submodule "bundle.available/vim-colors-solarized"] - path = bundle.available/vim-colors-solarized - url = http://github.com/altercation/vim-colors-solarized.git -[submodule "bundle.available/command-t"] - path = bundle.available/command-t - url = https://github.com/wincent/Command-T.git -[submodule "bundle.available/supertab"] - path = bundle.available/supertab - url = https://github.com/ervandew/supertab.git -[submodule "bundle.available/vim-markdown"] - path = bundle.available/vim-markdown - url = https://github.com/plasticboy/vim-markdown.git -[submodule "bundle.available/vim-surround"] - path = bundle.available/vim-surround - url = https://github.com/tpope/vim-surround.git -[submodule "bundle.available/matchit"] - path = bundle.available/matchit - url = https://github.com/edsono/vim-matchit -[submodule "bundle.available/ack.vim"] - path = bundle.available/ack.vim - url = https://github.com/mileszs/ack.vim.git -[submodule "bundle.available/vcscommand"] - path = bundle.available/vcscommand - url = git://repo.or.cz/vcscommand -[submodule "bundle.available/git-vim"] - path = bundle.available/git-vim - url = https://github.com/motemen/git-vim.git -[submodule "bundle.available/closetag"] - path = bundle.available/closetag - url = git://github.com/docunext/closetag.vim.git -[submodule "bundle.available/pyflakes"] - path = bundle.available/pyflakes - url = git://github.com/kevinw/pyflakes-vim.git -[submodule "bundle.available/nerdcommenter"] - path = bundle.available/nerdcommenter - url = git://github.com/scrooloose/nerdcommenter.git -[submodule "bundle.available/fugitive"] - path = bundle.available/fugitive - url = git://github.com/tpope/vim-fugitive.git -[submodule "bundle.available/tagbar"] - path = bundle.available/tagbar - url = git://github.com/majutsushi/tagbar.git -[submodule "bundle.available/delimitmate"] - path = bundle.available/delimitmate - url = git://github.com/Raimondi/delimitMate.git -[submodule "bundle.available/vim-less"] - path = bundle.available/vim-less - url = https://github.com/groenewege/vim-less.git -[submodule "bundle.available/vim-coffee-script"] - path = bundle.available/vim-coffee-script - url = https://github.com/kchmck/vim-coffee-script.git +[submodule "bundle/vim-pathogen"] + path = bundle/vim-pathogen + url = https://github.com/tpope/vim-pathogen.git diff --git a/autoload/pathogen.vim b/autoload/pathogen.vim deleted file mode 100644 index e10fac9..0000000 --- a/autoload/pathogen.vim +++ /dev/null @@ -1,142 +0,0 @@ -" pathogen.vim - path option manipulation -" Maintainer: Tim Pope -" Version: 1.3 - -" Install in ~/.vim/autoload (or ~\vimfiles\autoload). -" -" API is documented below. - -if exists("g:loaded_pathogen") || &cp - finish -endif -let g:loaded_pathogen = 1 - -" Split a path into a list. -function! pathogen#split(path) abort " {{{1 - if type(a:path) == type([]) | return a:path | endif - let split = split(a:path,'\\\@ 2) - syntax on -endif - -"enable filetype detection -"filetype on -filetype plugin on -filetype indent on - "ignore some files set wildignore+=*.o,*.obj,.git,.svn,*.pyc @@ -149,11 +146,16 @@ map  map!  map  map!  -"Terminal.app option+arrows +"Lion Terminal.app option+arrows map b map! b map f map! f +"Terminal.app option+arrows +map  +map!  +map  +map!  " make meta move on words like control map