From 7632f23d10fa97ffddd003aa77d9ad65f8d52ea5 Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Thu, 26 Jun 2014 22:09:11 -0700 Subject: [PATCH] Add vim dotfiles --- .gitmodules | 96 ++ ansible/ansible.cfg | 2 +- vim/.vim/.VimballRecord | 1 + vim/.vim/.netrwhist | 6 + vim/.vim/.scratch | 5 + vim/.vim/after/ftplugin/cpp.vim | 4 + vim/.vim/after/ftplugin/gitconfig.vim | 1 + vim/.vim/after/ftplugin/go.vim | 8 + vim/.vim/after/ftplugin/objc.vim | 4 + vim/.vim/after/ftplugin/python.vim | 4 + vim/.vim/after/ftplugin/ruby.vim | 2 + vim/.vim/after/ftplugin/taskpaper.vim | 1 + vim/.vim/after/ftplugin/vimwiki.vim | 1 + vim/.vim/autoload/pathogen.vim | 328 +++++ vim/.vim/bundle/ag | 1 + vim/.vim/bundle/argtextobj.vim | 1 + vim/.vim/bundle/base16 | 1 + .../bundle/bufexplorer/doc/bufexplorer.txt | 513 ++++++++ vim/.vim/bundle/bufexplorer/doc/tags | 24 + .../bundle/bufexplorer/plugin/bufexplorer.vim | 1162 +++++++++++++++++ vim/.vim/bundle/bufkill | 1 + .../bundle/camelcasemotion/.VimballRecord | 1 + .../autoload/camelcasemotion.vim | 173 +++ .../camelcasemotion/doc/camelcasemotion.txt | 183 +++ vim/.vim/bundle/camelcasemotion/doc/tags | 13 + .../plugin/camelcasemotion.vim | 204 +++ vim/.vim/bundle/ctrlp | 1 + vim/.vim/bundle/fakeclip | 1 + vim/.vim/bundle/gist-vim | 1 + vim/.vim/bundle/go | 1 + vim/.vim/bundle/gundo | 1 + vim/.vim/bundle/powerline/__init__.py | 157 +++ vim/.vim/bundle/powerline/__init__.pyc | Bin 0 -> 5835 bytes .../bundle/powerline/plugin/powerline.vim | 89 ++ vim/.vim/bundle/scratch/plugin/scratch.vim | 134 ++ vim/.vim/bundle/sensible | 1 + vim/.vim/bundle/tabular | 1 + vim/.vim/bundle/tagbar | 1 + vim/.vim/bundle/vim-coffee-script | 1 + vim/.vim/bundle/vim-colors-solarized | 1 + vim/.vim/bundle/vim-commentary | 1 + vim/.vim/bundle/vim-dispatch | 1 + vim/.vim/bundle/vim-easymotion | 1 + vim/.vim/bundle/vim-fugitive | 1 + vim/.vim/bundle/vim-haml | 1 + vim/.vim/bundle/vim-indent-object | 1 + vim/.vim/bundle/vim-pandoc | 1 + vim/.vim/bundle/vim-repeat | 1 + vim/.vim/bundle/vim-ruby | 1 + vim/.vim/bundle/vim-seek | 1 + vim/.vim/bundle/vim-surround | 1 + vim/.vim/bundle/vim-textobj-line | 1 + vim/.vim/bundle/vim-textobj-rubyblock | 1 + vim/.vim/bundle/vim-textobj-user | 1 + vim/.vim/bundle/vim-tmux-navigator | 1 + vim/.vim/bundle/vimux | 1 + vim/.vim/bundle/vimwiki | 1 + vim/.vim/bundle/vinegar | 1 + vim/.vim/colors/desert256.vim | 338 +++++ vim/.vim/ftdetect/applescript.vim | 1 + vim/.vim/ftdetect/ragel.vim | 1 + vim/.vim/indent/python.vim | 196 +++ vim/.vim/syntax/applescript.vim | 245 ++++ vim/.vim/syntax/ragel.vim | 149 +++ vim/.vim/syntax/textile.vim | 87 ++ vim/.vimrc | 267 ++++ 66 files changed, 4431 insertions(+), 1 deletion(-) create mode 100644 .gitmodules create mode 100644 vim/.vim/.VimballRecord create mode 100755 vim/.vim/.netrwhist create mode 100644 vim/.vim/.scratch create mode 100644 vim/.vim/after/ftplugin/cpp.vim create mode 100644 vim/.vim/after/ftplugin/gitconfig.vim create mode 100644 vim/.vim/after/ftplugin/go.vim create mode 100644 vim/.vim/after/ftplugin/objc.vim create mode 100644 vim/.vim/after/ftplugin/python.vim create mode 100644 vim/.vim/after/ftplugin/ruby.vim create mode 100644 vim/.vim/after/ftplugin/taskpaper.vim create mode 100644 vim/.vim/after/ftplugin/vimwiki.vim create mode 100644 vim/.vim/autoload/pathogen.vim create mode 160000 vim/.vim/bundle/ag create mode 160000 vim/.vim/bundle/argtextobj.vim create mode 160000 vim/.vim/bundle/base16 create mode 100755 vim/.vim/bundle/bufexplorer/doc/bufexplorer.txt create mode 100644 vim/.vim/bundle/bufexplorer/doc/tags create mode 100755 vim/.vim/bundle/bufexplorer/plugin/bufexplorer.vim create mode 160000 vim/.vim/bundle/bufkill create mode 100644 vim/.vim/bundle/camelcasemotion/.VimballRecord create mode 100644 vim/.vim/bundle/camelcasemotion/autoload/camelcasemotion.vim create mode 100644 vim/.vim/bundle/camelcasemotion/doc/camelcasemotion.txt create mode 100644 vim/.vim/bundle/camelcasemotion/doc/tags create mode 100644 vim/.vim/bundle/camelcasemotion/plugin/camelcasemotion.vim create mode 160000 vim/.vim/bundle/ctrlp create mode 160000 vim/.vim/bundle/fakeclip create mode 160000 vim/.vim/bundle/gist-vim create mode 160000 vim/.vim/bundle/go create mode 160000 vim/.vim/bundle/gundo create mode 100644 vim/.vim/bundle/powerline/__init__.py create mode 100644 vim/.vim/bundle/powerline/__init__.pyc create mode 100644 vim/.vim/bundle/powerline/plugin/powerline.vim create mode 100644 vim/.vim/bundle/scratch/plugin/scratch.vim create mode 160000 vim/.vim/bundle/sensible create mode 160000 vim/.vim/bundle/tabular create mode 160000 vim/.vim/bundle/tagbar create mode 160000 vim/.vim/bundle/vim-coffee-script create mode 160000 vim/.vim/bundle/vim-colors-solarized create mode 160000 vim/.vim/bundle/vim-commentary create mode 160000 vim/.vim/bundle/vim-dispatch create mode 160000 vim/.vim/bundle/vim-easymotion create mode 160000 vim/.vim/bundle/vim-fugitive create mode 160000 vim/.vim/bundle/vim-haml create mode 160000 vim/.vim/bundle/vim-indent-object create mode 160000 vim/.vim/bundle/vim-pandoc create mode 160000 vim/.vim/bundle/vim-repeat create mode 160000 vim/.vim/bundle/vim-ruby create mode 160000 vim/.vim/bundle/vim-seek create mode 160000 vim/.vim/bundle/vim-surround create mode 160000 vim/.vim/bundle/vim-textobj-line create mode 160000 vim/.vim/bundle/vim-textobj-rubyblock create mode 160000 vim/.vim/bundle/vim-textobj-user create mode 160000 vim/.vim/bundle/vim-tmux-navigator create mode 160000 vim/.vim/bundle/vimux create mode 160000 vim/.vim/bundle/vimwiki create mode 160000 vim/.vim/bundle/vinegar create mode 100644 vim/.vim/colors/desert256.vim create mode 100644 vim/.vim/ftdetect/applescript.vim create mode 100644 vim/.vim/ftdetect/ragel.vim create mode 100644 vim/.vim/indent/python.vim create mode 100644 vim/.vim/syntax/applescript.vim create mode 100644 vim/.vim/syntax/ragel.vim create mode 100644 vim/.vim/syntax/textile.vim create mode 100644 vim/.vimrc diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..aba8aaf --- /dev/null +++ b/.gitmodules @@ -0,0 +1,96 @@ +[submodule ".vim/bundle/vim-pandoc"] + path = vim/.vim/bundle/vim-pandoc + url = git://github.com/vim-pandoc/vim-pandoc.git +[submodule ".vim/bundle/vim-textobj-user"] + path = vim/.vim/bundle/vim-textobj-user + url = git://github.com/kana/vim-textobj-user.git +[submodule ".vim/bundle/vim-textobj-line"] + path = vim/.vim/bundle/vim-textobj-line + url = git://github.com/kana/vim-textobj-line.git +[submodule ".vim/bundle/argtextobj.vim"] + path = vim/.vim/bundle/argtextobj.vim + url = git://github.com/vim-scripts/argtextobj.vim.git +[submodule ".vim/bundle/gist-vim"] + path = vim/.vim/bundle/gist-vim + url = git://github.com/mattn/gist-vim.git +[submodule ".vim/bundle/vim-textobj-rubyblock"] + path = vim/.vim/bundle/vim-textobj-rubyblock + url = git://github.com/nelstrom/vim-textobj-rubyblock.git +[submodule ".vim/bundle/vim-indent-object"] + path = vim/.vim/bundle/vim-indent-object + url = git://github.com/michaeljsmith/vim-indent-object.git +[submodule ".vim/bundle/vim-colors-solarized"] + path = vim/.vim/bundle/vim-colors-solarized + url = git://github.com/altercation/vim-colors-solarized.git +[submodule ".vim/bundle/vim-commentary"] + path = vim/.vim/bundle/vim-commentary + url = git://github.com/tpope/vim-commentary.git +[submodule ".vim/bundle/vim-repeat"] + path = vim/.vim/bundle/vim-repeat + url = git://github.com/tpope/vim-repeat.git +[submodule ".vim/bundle/vimux"] + path = vim/.vim/bundle/vimux + url = git://github.com/benmills/vimux.git +[submodule ".vim/bundle/vim-surround"] + path = vim/.vim/bundle/vim-surround + url = git://github.com/tpope/vim-surround.git +[submodule ".vim/bundle/tabular"] + path = vim/.vim/bundle/tabular + url = git://github.com/godlygeek/tabular.git +[submodule ".vim/bundle/vim-ruby"] + path = vim/.vim/bundle/vim-ruby + url = git://github.com/vim-ruby/vim-ruby.git +[submodule ".vim/bundle/vim-fugitive"] + path = vim/.vim/bundle/vim-fugitive + url = git://github.com/tpope/vim-fugitive.git +[submodule ".vim/bundle/vim-coffee-script"] + path = vim/.vim/bundle/vim-coffee-script + url = git://github.com/kchmck/vim-coffee-script.git +[submodule ".vim/bundle/vim-haml"] + path = vim/.vim/bundle/vim-haml + url = git://github.com/tpope/vim-haml.git +[submodule ".vim/bundle/bufkill"] + path = vim/.vim/bundle/bufkill + url = git://github.com/vim-scripts/bufkill.vim.git +[submodule ".vim/bundle/vim-easymotion"] + path = vim/.vim/bundle/vim-easymotion + url = git://github.com/Lokaltog/vim-easymotion.git +[submodule ".vim/bundle/vim-seek"] + path = vim/.vim/bundle/vim-seek + url = git://github.com/goldfeld/vim-seek.git +[submodule ".vim/bundle/gundo"] + path = vim/.vim/bundle/gundo + url = git://github.com/sjl/gundo.vim.git +[submodule ".vim/bundle/vim-dispatch"] + path = vim/.vim/bundle/vim-dispatch + url = git://github.com/tpope/vim-dispatch.git +[submodule ".vim/bundle/tagbar"] + path = vim/.vim/bundle/tagbar + url = git://github.com/majutsushi/tagbar.git +[submodule ".vim/bundle/ctrlp"] + path = vim/.vim/bundle/ctrlp + url = git@github.com:kien/ctrlp.vim.git +[submodule ".vim/bundle/sensible"] + path = vim/.vim/bundle/sensible + url = git@github.com:tpope/vim-sensible.git +[submodule ".vim/bundle/base16"] + path = vim/.vim/bundle/base16 + url = git://github.com/chriskempson/base16-vim.git +[submodule "vim/.vim/bundle/fakeclip"] + path = vim/.vim/bundle/fakeclip + url = https://github.com/kana/vim-fakeclip +[submodule "vim/.vim/bundle/ag"] + path = vim/.vim/bundle/ag + url = git@github.com:rking/ag.vim.git +[submodule "vim/.vim/bundle/vimwiki"] + path = vim/.vim/bundle/vimwiki + url = https://github.com/vimwiki/vimwiki +[submodule "vim/.vim/bundle/vinegar"] + path = vim/.vim/bundle/vinegar + url = git://github.com/tpope/vim-vinegar.git +[submodule "vim/.vim/bundle/go"] + path = vim/.vim/bundle/go + url = https://github.com/fatih/vim-go.git +[submodule "vim/.vim/bundle/vim-tmux-navigator"] + path = vim/.vim/bundle/vim-tmux-navigator + url = git@github.com:christoomey/vim-tmux-navigator.git diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg index b5714db..c95e0a9 100644 --- a/ansible/ansible.cfg +++ b/ansible/ansible.cfg @@ -1,3 +1,3 @@ [defaults] -hostfile = my.hosts +hostfile = hosts # ask_sudo_pass = True diff --git a/vim/.vim/.VimballRecord b/vim/.vim/.VimballRecord new file mode 100644 index 0000000..7f12536 --- /dev/null +++ b/vim/.vim/.VimballRecord @@ -0,0 +1 @@ +tComment.vba: call delete('C:\Users\alphach\vimfiles/doc/tComment.txt')|call delete('C:\Users\alphach\vimfiles/plugin/tComment.vim')|call delete('C:\Users\alphach\vimfiles/autoload/tcomment.vim') diff --git a/vim/.vim/.netrwhist b/vim/.vim/.netrwhist new file mode 100755 index 0000000..9dff4ff --- /dev/null +++ b/vim/.vim/.netrwhist @@ -0,0 +1,6 @@ +let g:netrw_dirhistmax =10 +let g:netrw_dirhist_cnt =4 +let g:netrw_dirhist_1='/Users/alpha/Dropbox/conf_dir/Alfred 2/Alfred.alfredpreferences/workflows' +let g:netrw_dirhist_2='/Users/alpha/src/sm/sm-cap/.bundle/gems/chef-api-0.2.1' +let g:netrw_dirhist_3='/Users/alpha/Dropbox/src/github.com/kejadlen/dotfiles/ansible' +let g:netrw_dirhist_4='/Users/alpha/src/sm/sd-worker' diff --git a/vim/.vim/.scratch b/vim/.vim/.scratch new file mode 100644 index 0000000..7ff64cf --- /dev/null +++ b/vim/.vim/.scratch @@ -0,0 +1,5 @@ +PIP (Save OR Preserve OR Site OR Historic OR "#PreserveDMV" OR landmark OR PartnersinPres OR "Partners in Preservation" OR Amex OR AmericanExpress OR "American Express" OR "National Trust" OR "@PresNation" OR Preservation OR Grant OR Grants OR Win OR Vote OR Cast OR Ballot OR "@PartnersinPres" OR "@AmericanExpress" OR "Partners in Pres" OR "#AspinHill" OR "#AllSoulsUUDC" OR "#ArlingtonHouse" OR "#AthenaeumNVFAA" OR "#COCanal" OR "#CarterWoodson" OR "#clarabarton" OR "#ColvinRunMill" OR "#CongCemetery" OR "#DarbyGeneral" OR "#DOaksPark" OR "#GeorgeMasonMem" OR "#Greenbelttheatre" OR "#GUObservatory" OR "#LAMBPCS" OR "#LivingClassrooms" OR MetroAMEC OR "#MountVernon" OR "#NMWA" OR "#SixthandI" OR "#TeatroGALA" OR "#USMCMemorial" OR "#WNCathedral" OR "@MoCoHumane" OR "@allsoulsuudc" OR "@ArlingtonNPS" OR "@AthenaeumNVFAA" OR "@WoodsonNPS" OR "@CivilWarMed" OR "@fairfaxparks" OR "@CongCemetery" OR "@MontgomeryParks" OR "@DOaksPark" OR "@cityofgreenbelt" OR "@LAMBPCS" OR "@livingclassroom" OR "@MetropolitanAME" OR "@VisitMtVernon" OR "@WomenInTheArts" OR "@SixthandI" OR "@TeatroGALA" OR "@NPSGWMP" OR "@WNCathedral" OR "Aspin Hill" OR "Aspin Hill Kennel" OR "Aspin Hill Memorial Park" OR "All Souls Church Unitarian" OR "All Souls Church" OR "All Souls Unitarian" OR "All Souls D.C." OR "All Souls DC" OR "Arlington House" OR Athenaeum OR "Athenaeum NVFAA" OR "C&O Canal" OR "C&O Abner" OR "C&O Cloud House" OR (C AND "O Canal") OR (C AND "O Abner") OR (C AND "O Cloud House") OR "Abner Cloud House" OR "Carter G. Woodson Home" OR "Carter G Woodson Home" OR "Woodson Home" OR "Carter G Home" OR "Carter G. Home" OR "Clara Barton's Missing Soldiers Office" OR "Clara Bartons Missing Soldiers Office" OR "Clara Barton" OR "Colvin Run Mill" OR "Congressional Cemetery" OR "Con Cemetery" OR "Darby Store" OR "Darby General Store" OR "Darby General" OR "Dumbarton Oaks Park" OR "Dumbarton Oaks" OR "Dumbarton Park" OR Dumbarton OR "Metropolitan AME" OR "Metro AME" OR "Mount Vernon" OR "Mt. Vernon" OR "Mt Vernon" OR "Tivoli Square") +Win ("#AspinHill" OR "#AllSoulsUUDC" OR "#ArlingtonHouse" OR "#AthenaeumNVFAA" OR "#COCanal" OR "#CarterWoodson" OR "#clarabarton" OR "#ColvinRunMill" OR "#CongCemetery" OR "#DarbyGeneral" OR "#DOaksPark" OR "#GeorgeMasonMem" OR "#Greenbelttheatre" OR "#GUObservatory" OR "#LAMBPCS" OR "#LivingClassrooms" OR MetroAMEC OR "#MountVernon" OR "#NMWA" OR "#SixthandI" OR "#TeatroGALA" OR "#USMCMemorial" OR "#WNCathedral" OR "#MeridianHill" OR "@MoCoHumane" OR "@allsoulsuudc" OR "@ArlingtonNPS" OR "@AthenaeumNVFAA" OR "@WoodsonNPS" OR "@CivilWarMed" OR "@fairfaxparks" OR "@CongCemetery" OR "@MontgomeryParks" OR "@DOaksPark" OR "@cityofgreenbelt" OR "@LAMBPCS" OR "@livingclassroom" OR "@MetropolitanAME" OR "@VisitMtVernon" OR "@WomenInTheArts" OR "@SixthandI" OR "@TeatroGALA" OR "@NPSGWMP" OR "@WNCathedral" OR "@Georgetown" OR "Aspin Hill" OR "Aspin Hill Kennel" OR "Aspin Hill Memorial Park" OR "All Souls Church Unitarian" OR "All Souls Church" OR "All Souls Unitarian" OR "All Souls D.C." OR "All Souls D.C" OR "All Souls DC" OR "Arlington House" OR Athenaeum OR "Athenaeum NVFAA" OR "C&O Canal" OR "C&O Abner" OR "C&O Cloud House" OR (C AND "O Canal") OR (C AND "O Abner") OR (C AND "O Cloud House") OR "Abner Cloud House" OR "Carter G. Woodson Home" OR "Carter G Woodson Home" OR "Woodson Home" OR "Carter G Home" OR "Carter G. Home" OR "Clara Barton's Missing Soldiers Office" OR "Clara Bartons Missing Soldiers Office" OR "Clara Barton" OR "Colvin Run Mill" OR "Congressional Cemetery" OR "Con Cemetery" OR "Darby Store" OR "Darby General Store" OR "Darby General" OR "Dumbarton Oaks Park" OR "Dumbarton Oaks" OR "Dumbarton Park" OR Dumbarton OR "Metropolitan AME" OR "Metro AME" OR "Mount Vernon" OR "Mount Vernon" OR "Mt Vernon" OR "Tivoli Square" OR "GALA Hispanic Theatre" OR "GALA Hispanic Theater" OR "GALA Theatre" OR "GALA Theater" OR "USMC Memorial" OR "USMC War Statue" OR "Iwo Jima" OR "US Marine Corps War Memorial" OR "USMC Memorial" OR "USMC Bronze" OR "@COcanalNPS" OR "C & O Canal" OR "C & O Abner" OR "C & O Cloud House") +Vote ("#AspinHill" OR "#AllSoulsUUDC" OR "#ArlingtonHouse" OR "#AthenaeumNVFAA" OR "#COCanal" OR "#CarterWoodson" OR "#clarabarton" OR "#ColvinRunMill" OR "#CongCemetery" OR "#DarbyGeneral" OR "#DOaksPark" OR "#GeorgeMasonMem" OR "#Greenbelttheatre" OR "#GUObservatory" OR "#LAMBPCS" OR "#LivingClassrooms" OR MetroAMEC OR "#MountVernon" OR "#NMWA" OR "#SixthandI" OR "#TeatroGALA" OR "#USMCMemorial" OR "#WNCathedral" OR "#MeridianHill" OR "@MoCoHumane" OR "@allsoulsuudc" OR "@ArlingtonNPS" OR "@AthenaeumNVFAA" OR "@WoodsonNPS" OR "@CivilWarMed" OR "@fairfaxparks" OR "@CongCemetery" OR "@MontgomeryParks" OR "@DOaksPark" OR "@cityofgreenbelt" OR "@LAMBPCS" OR "@livingclassroom" OR "@MetropolitanAME" OR "@VisitMtVernon" OR "@WomenInTheArts" OR "@SixthandI" OR "@TeatroGALA" OR "@NPSGWMP" OR "@WNCathedral" OR "@Georgetown" OR "Aspin Hill" OR "Aspin Hill Kennel" OR "Aspin Hill Memorial Park" OR "All Souls Church Unitarian" OR "All Souls Church" OR "All Souls Unitarian" OR "All Souls D.C." OR "All Souls D.C" OR "All Souls DC" OR "Arlington House" OR Athenaeum OR "Athenaeum NVFAA" OR "C&O Canal" OR "C&O Abner" OR "C&O Cloud House" OR (C AND "O Canal") OR (C AND "O Abner") OR (C AND "O Cloud House") OR "Abner Cloud House" OR "Carter G. Woodson Home" OR "Carter G Woodson Home" OR "Woodson Home" OR "Carter G Home" OR "Carter G. Home" OR "Clara Barton's Missing Soldiers Office" OR "Clara Bartons Missing Soldiers Office" OR "Clara Barton" OR "Colvin Run Mill" OR "Congressional Cemetery" OR "Con Cemetery" OR "Darby Store" OR "Darby General Store" OR "Darby General" OR "Dumbarton Oaks Park" OR "Dumbarton Oaks" OR "Dumbarton Park" OR Dumbarton OR "Metropolitan AME" OR "Metro AME" OR "Mount Vernon" OR "Mount Vernon" OR "Mt Vernon" OR "Tivoli Square" OR "GALA Hispanic Theatre" OR "GALA Hispanic Theater" OR "GALA Theatre" OR "GALA Theater" OR "USMC Memorial" OR "USMC War Statue" OR "Iwo Jima" OR "US Marine Corps War Memorial" OR "USMC Memorial" OR "USMC Bronze" OR "@COcanalNPS" OR "C & O Canal" OR "C & O Abner") +"Icon Mann" ("@BET" OR "@CENTRICTV" OR "28 Men of Change" OR "#28menofchange" OR "Men of Change" OR "#Iconman" OR "Icon Man" OR "#Iconmann" OR "#BETIconMANN" OR "#28MOC" OR "Man of Change" OR "Nnamdi Asomugha" OR Asomugha OR "@AsomughaFndn" OR "Dr. Robert Gore" OR "Louis Carr" OR "Ed Lewis" OR "Edward T. Lewis" OR "Courtney Hollowell" OR "Marcus Samuelsson" OR "@MarcusCooks" OR "Dr. Steve Perry" OR "@DrStevePerry" OR "Ron Finley" OR "@RonFinleyHQ" OR "Swizz Beatz" OR "@THEREALSWIZZZ" OR "Ndaba Mandela" OR "@NdabaMandela" OR "Steve Pemberton" OR "Charles Jenkins" OR "@CharlesJenkins7" OR "@thejenkinsguy22" OR "Lonnie Bunch" OR "Lonnie Bunch III" OR "Ambassador Ron Kirk" OR "Ron Kirk" OR "Dr. Robert Ross" OR "Robert Ross" OR "Robert K. Ross" OR "@CalEndow" OR "DeVon Franklin" OR "@DeVonFranklin" OR "Nile Rodgers" OR "@nilerodgers" OR "Ray McGuire" OR "Raymond McGuire" OR "Sanford Biggers" OR "@noshun" OR "Wayne Brady" OR "@waynebrady" OR "Steve McQueen" OR "@McQueeninchains" OR "Lee Daniels" OR "Forest Whitaker" OR "@ForestWhitaker" OR "Leland Melvin" OR "@Astro_Flow" OR "Nick Cannon" OR "@NickCannon" OR "Steve Harvey" OR "@IAmSteveHarvey") +"Dairy Free" ("Nancy’s" OR amande OR "almond breeze" OR "blue diamond" OR "so delicious" OR WholeSoy OR "nu lait" OR "So Soy" OR "So Coconut milk" OR "trader joe's" OR nogurt OR "trader joe" OR "trader jo's" OR "almond dream" OR "dairy free" OR "Silk Live" OR "Dean Foods" OR WildWood OR Soyogurt OR Arrowroot OR "Almond Dream" OR "so delicious" OR "turtle mountain" OR "almond milk" OR "coconut milk" OR "soy milk" OR "hemp milk" OR silk OR "silk soy milk" OR westsoy OR "west soy" OR edensoy OR "almond breeze" OR "blue diamond" OR "rice dream" OR "rice milk" OR "pacific natural foods" OR pacific OR "so delicious" OR "turtle mountain" OR "dairy free" OR "coconut bliss" OR tofutti OR cuties OR "purely decadent" OR "double rainbow" OR "almond dream" OR "organic rice divine" OR "coconut bliss" OR "yours truly" OR "dream kreme" OR "omega cream" OR sorbet OR "Luna & Larry’s" OR "Almond Dream" OR "Rice Dream" OR Tempt OR "so delicious" OR "turtle mountain" OR mimiccreme OR soygo OR "coconut milk" OR "soy creamer" OR "wildwood soy" OR "pacific foods" OR "pacific foods blenders" OR "Trader Joe's" OR "Trader Joes" OR "Taam Tov") diff --git a/vim/.vim/after/ftplugin/cpp.vim b/vim/.vim/after/ftplugin/cpp.vim new file mode 100644 index 0000000..938afbc --- /dev/null +++ b/vim/.vim/after/ftplugin/cpp.vim @@ -0,0 +1,4 @@ +setlocal tabstop=4 +setlocal softtabstop=4 +setlocal shiftwidth=4 +setlocal noexpandtab diff --git a/vim/.vim/after/ftplugin/gitconfig.vim b/vim/.vim/after/ftplugin/gitconfig.vim new file mode 100644 index 0000000..bbd8967 --- /dev/null +++ b/vim/.vim/after/ftplugin/gitconfig.vim @@ -0,0 +1 @@ +setlocal noexpandtab diff --git a/vim/.vim/after/ftplugin/go.vim b/vim/.vim/after/ftplugin/go.vim new file mode 100644 index 0000000..d6a1ebb --- /dev/null +++ b/vim/.vim/after/ftplugin/go.vim @@ -0,0 +1,8 @@ +setlocal tabstop=4 +setlocal softtabstop=4 +setlocal shiftwidth=4 +setlocal noexpandtab +setlocal commentstring=//\ %s +setlocal foldmethod=syntax +compiler go +let b:dispatch="go test -v" diff --git a/vim/.vim/after/ftplugin/objc.vim b/vim/.vim/after/ftplugin/objc.vim new file mode 100644 index 0000000..938afbc --- /dev/null +++ b/vim/.vim/after/ftplugin/objc.vim @@ -0,0 +1,4 @@ +setlocal tabstop=4 +setlocal softtabstop=4 +setlocal shiftwidth=4 +setlocal noexpandtab diff --git a/vim/.vim/after/ftplugin/python.vim b/vim/.vim/after/ftplugin/python.vim new file mode 100644 index 0000000..3776f28 --- /dev/null +++ b/vim/.vim/after/ftplugin/python.vim @@ -0,0 +1,4 @@ +setlocal tabstop=4 +setlocal softtabstop=4 +setlocal shiftwidth=4 +" setlocal nosmartindent diff --git a/vim/.vim/after/ftplugin/ruby.vim b/vim/.vim/after/ftplugin/ruby.vim new file mode 100644 index 0000000..59dcb5a --- /dev/null +++ b/vim/.vim/after/ftplugin/ruby.vim @@ -0,0 +1,2 @@ +setlocal foldmethod=syntax +setlocal foldlevelstart=5 diff --git a/vim/.vim/after/ftplugin/taskpaper.vim b/vim/.vim/after/ftplugin/taskpaper.vim new file mode 100644 index 0000000..bbd8967 --- /dev/null +++ b/vim/.vim/after/ftplugin/taskpaper.vim @@ -0,0 +1 @@ +setlocal noexpandtab diff --git a/vim/.vim/after/ftplugin/vimwiki.vim b/vim/.vim/after/ftplugin/vimwiki.vim new file mode 100644 index 0000000..0161d6f --- /dev/null +++ b/vim/.vim/after/ftplugin/vimwiki.vim @@ -0,0 +1 @@ +nmap VimwikiToggleListItem diff --git a/vim/.vim/autoload/pathogen.vim b/vim/.vim/autoload/pathogen.vim new file mode 100644 index 0000000..16c21fe --- /dev/null +++ b/vim/.vim/autoload/pathogen.vim @@ -0,0 +1,328 @@ +" pathogen.vim - path option manipulation +" Maintainer: Tim Pope +" Version: 2.2 + +" Install in ~/.vim/autoload (or ~\vimfiles\autoload). +" +" For management of individually installed plugins in ~/.vim/bundle (or +" ~\vimfiles\bundle), adding `call pathogen#infect()` to the top of your +" .vimrc is the only other setup necessary. +" +" The API is documented inline below. For maximum ease of reading, +" :set foldmethod=marker + +if exists("g:loaded_pathogen") || &cp + finish +endif +let g:loaded_pathogen = 1 + +function! s:warn(msg) + if &verbose + echohl WarningMsg + echomsg a:msg + echohl NONE + endif +endfunction + +" Point of entry for basic default usage. Give a relative path to invoke +" pathogen#incubate() (defaults to "bundle/{}"), or an absolute path to invoke +" pathogen#surround(). For backwards compatibility purposes, a full path that +" does not end in {} or * is given to pathogen#runtime_prepend_subdirectories() +" instead. +function! pathogen#infect(...) abort " {{{1 + for path in a:0 ? reverse(copy(a:000)) : ['bundle/{}'] + if path =~# '^[^\\/]\+$' + call s:warn('Change pathogen#infect('.string(path).') to pathogen#infect('.string(path.'/{}').')') + call pathogen#incubate(path . '/{}') + elseif path =~# '^[^\\/]\+[\\/]\%({}\|\*\)$' + call pathogen#incubate(path) + elseif path =~# '[\\/]\%({}\|\*\)$' + call pathogen#surround(path) + else + call s:warn('Change pathogen#infect('.string(path).') to pathogen#infect('.string(path.'/{}').')') + call pathogen#surround(path . '/{}') + endif + endfor + call pathogen#cycle_filetype() + return '' +endfunction " }}}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,'\\\@"),'!isdirectory(v:val)')) && (!filereadable(dir.sep.'doc'.sep.'tags') || filewritable(dir.sep.'doc'.sep.'tags')) + helptags `=dir.'/doc'` + endif + endfor + endfor +endfunction " }}}1 + +command! -bar Helptags :call pathogen#helptags() + +" Execute the given command. This is basically a backdoor for --remote-expr. +function! pathogen#execute(...) abort " {{{1 + for command in a:000 + execute command + endfor + return '' +endfunction " }}}1 + +" Like findfile(), but hardcoded to use the runtimepath. +function! pathogen#runtime_findfile(file,count) abort "{{{1 + let rtp = pathogen#join(1,pathogen#split(&rtp)) + let file = findfile(a:file,rtp,a:count) + if file ==# '' + return '' + else + return fnamemodify(file,':p') + endif +endfunction " }}}1 + +" Backport of fnameescape(). +function! pathogen#fnameescape(string) abort " {{{1 + if exists('*fnameescape') + return fnameescape(a:string) + elseif a:string ==# '-' + return '\-' + else + return substitute(escape(a:string," \t\n*?[{`$\\%#'\"|!<"),'^[+>]','\\&','') + endif +endfunction " }}}1 + +if exists(':Vedit') + finish +endif + +let s:vopen_warning = 0 + +function! s:find(count,cmd,file,lcd) " {{{1 + let rtp = pathogen#join(1,pathogen#split(&runtimepath)) + let file = pathogen#runtime_findfile(a:file,a:count) + if file ==# '' + return "echoerr 'E345: Can''t find file \"".a:file."\" in runtimepath'" + endif + if !s:vopen_warning + let s:vopen_warning = 1 + let warning = '|echohl WarningMsg|echo "Install scriptease.vim to continue using :V'.a:cmd.'"|echohl NONE' + else + let warning = '' + endif + if a:lcd + let path = file[0:-strlen(a:file)-2] + execute 'lcd `=path`' + return a:cmd.' '.pathogen#fnameescape(a:file) . warning + else + return a:cmd.' '.pathogen#fnameescape(file) . warning + endif +endfunction " }}}1 + +function! s:Findcomplete(A,L,P) " {{{1 + let sep = pathogen#separator() + let cheats = { + \'a': 'autoload', + \'d': 'doc', + \'f': 'ftplugin', + \'i': 'indent', + \'p': 'plugin', + \'s': 'syntax'} + if a:A =~# '^\w[\\/]' && has_key(cheats,a:A[0]) + let request = cheats[a:A[0]].a:A[1:-1] + else + let request = a:A + endif + let pattern = substitute(request,'/\|\'.sep,'*'.sep,'g').'*' + let found = {} + for path in pathogen#split(&runtimepath) + let path = expand(path, ':p') + let matches = split(glob(path.sep.pattern),"\n") + call map(matches,'isdirectory(v:val) ? v:val.sep : v:val') + call map(matches,'expand(v:val, ":p")[strlen(path)+1:-1]') + for match in matches + let found[match] = 1 + endfor + endfor + return sort(keys(found)) +endfunction " }}}1 + +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Ve :execute s:find(,'edit',,0) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vedit :execute s:find(,'edit',,0) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vopen :execute s:find(,'edit',,1) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vsplit :execute s:find(,'split',,1) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vvsplit :execute s:find(,'vsplit',,1) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vtabedit :execute s:find(,'tabedit',,1) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vpedit :execute s:find(,'pedit',,1) +command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vread :execute s:find(,'read',,1) + +" vim:set et sw=2: diff --git a/vim/.vim/bundle/ag b/vim/.vim/bundle/ag new file mode 160000 index 0000000..369c617 --- /dev/null +++ b/vim/.vim/bundle/ag @@ -0,0 +1 @@ +Subproject commit 369c617c23d7683e936eef25250ec77ab3dc8a9b diff --git a/vim/.vim/bundle/argtextobj.vim b/vim/.vim/bundle/argtextobj.vim new file mode 160000 index 0000000..f3fbe42 --- /dev/null +++ b/vim/.vim/bundle/argtextobj.vim @@ -0,0 +1 @@ +Subproject commit f3fbe427f7b4ec436416a5816d714dc917dc530b diff --git a/vim/.vim/bundle/base16 b/vim/.vim/bundle/base16 new file mode 160000 index 0000000..c0ad852 --- /dev/null +++ b/vim/.vim/bundle/base16 @@ -0,0 +1 @@ +Subproject commit c0ad852dd453e4e9ac63cf7de89aae0c83f317a7 diff --git a/vim/.vim/bundle/bufexplorer/doc/bufexplorer.txt b/vim/.vim/bundle/bufexplorer/doc/bufexplorer.txt new file mode 100755 index 0000000..06e9223 --- /dev/null +++ b/vim/.vim/bundle/bufexplorer/doc/bufexplorer.txt @@ -0,0 +1,513 @@ +*bufexplorer.txt* Buffer Explorer Last Change: 22 Oct 2010 + +Buffer Explorer *buffer-explorer* *bufexplorer* + Version 7.2.8 + +Plugin for easily exploring (or browsing) Vim |:buffers|. + +|bufexplorer-installation| Installation +|bufexplorer-usage| Usage +|bufexplorer-windowlayout| Window Layout +|bufexplorer-customization| Customization +|bufexplorer-changelog| Change Log +|bufexplorer-todo| Todo +|bufexplorer-credits| Credits + +For Vim version 7.0 and above. +This plugin is only available if 'compatible' is not set. + +{Vi does not have any of this} + +============================================================================== +INSTALLATION *bufexplorer-installation* + +To install: + - Download the bufexplorer.zip. + - Extract the zip archive into your runtime directory. + The archive contains plugin/bufexplorer.vim, and doc/bufexplorer.txt. + - Start Vim or goto an existing instance of Vim. + - Execute the following command: +> + :helptag /doc +< + This will generate all the help tags for any file located in the doc + directory. + +============================================================================== +USAGE *bufexplorer-usage* + +To start exploring in the current window, use: > + \be or :BufExplorer +To start exploring in a newly split horizontal window, use: > + \bs or :BufExplorerHorizontalSplit +To start exploring in a newly split vertical window, use: > + \bv or :BufExplorerVerticalSplit + +If you would like to use something other than '\', you may simply change the +leader (see |mapleader|). + +Note: If the current buffer is modified when bufexplorer started, the current + window is always split and the new bufexplorer is displayed in that new + window. + +Commands to use once exploring: + + Toggle help information. + Opens the buffer that is under the cursor into the current + window. + Opens the buffer that is under the cursor into the current + window. + Opens the buffer that is under the cursor in another tab. + d |:delete|the buffer under the cursor from the list. The + buffer's 'buflisted' is cleared. This allows for the buffer to + be displayed again using the 'show unlisted' command. + R Toggles relative path/absolute path. + T Toggles to show only buffers for this tab or not. + D |:wipeout|the buffer under the cursor from the list. When a + buffers is wiped, it will not be shown when unlisted buffer are + displayed. + f Toggles whether you are taken to the active window when + selecting a buffer or not. + o Opens the buffer that is under the cursor into the current + window. + p Toggles the showing of a split filename/pathname. + q Quit exploring. + r Reverses the order the buffers are listed in. + s Selects the order the buffers are listed in. Either by buffer + number, file name, file extension, most recently used (MRU), or + full path. + t Opens the buffer that is under the cursor in another tab. + u Toggles the showing of "unlisted" buffers. + +Once invoked, Buffer Explorer displays a sorted list (MRU is the default +sort method) of all the buffers that are currently opened. You are then +able to move the cursor to the line containing the buffer's name you are +wanting to act upon. Once you have selected the buffer you would like, +you can then either open it, close it(delete), resort the list, reverse +the sort, quit exploring and so on... + +=============================================================================== +WINDOW LAYOUT *bufexplorer-windowlayout* + +------------------------------------------------------------------------------- +" Press for Help +" Sorted by mru | Locate buffer | Absolute Split path +"= + 01 %a bufexplorer.txt C:\Vim\vimfiles\doc line 87 + 02 # bufexplorer.vim c:\Vim\vimfiles\plugin line 1 +------------------------------------------------------------------------------- + | | | | | + | | | | +-- Current Line #. + | | | +-- Relative/Full Path + | | +-- Buffer Name. + | +-- Buffer Attributes. See|:buffers|for more information. + +-- Buffer Number. See|:buffers|for more information. + +=============================================================================== +CUSTOMIZATION *bufexplorer-customization* + + *g:bufExplorerChgWin* +If set, bufexplorer will bring up the selected buffer in the window specified +by g:bufExplorerChgWin. + + *g:bufExplorerDefaultHelp* +To control whether the default help is displayed or not, use: > + let g:bufExplorerDefaultHelp=0 " Do not show default help. + let g:bufExplorerDefaultHelp=1 " Show default help. +The default is to show the default help. + + *g:bufExplorerDetailedHelp* +To control whether detailed help is display by, use: > + let g:bufExplorerDetailedHelp=0 " Do not show detailed help. + let g:bufExplorerDetailedHelp=1 " Show detailed help. +The default is NOT to show detailed help. + + *g:bufExplorerFindActive* +To control whether you are taken to the active window when selecting a buffer, +use: > + let g:bufExplorerFindActive=0 " Do not go to active window. + let g:bufExplorerFindActive=1 " Go to active window. +The default is to be taken to the active window. + + *g:bufExplorerFuncRef* +When a buffer is selected, the functions specified either singly or as a list +will be called. + + *g:bufExplorerReverseSort* +To control whether to sort the buffer in reverse order or not, use: > + let g:bufExplorerReverseSort=0 " Do not sort in reverse order. + let g:bufExplorerReverseSort=1 " Sort in reverse order. +The default is NOT to sort in reverse order. + + *g:bufExplorerShowDirectories* +Directories usually show up in the list from using a command like ":e .". +To control whether to show directories in the buffer list or not, use: > + let g:bufExplorerShowDirectories=1 " Show directories. + let g:bufExplorerShowDirectories=0 " Don't show directories. +The default is to show directories. + + *g:bufExplorerShowRelativePath* +To control whether to show absolute paths or relative to the current +directory, use: > + let g:bufExplorerShowRelativePath=0 " Show absolute paths. + let g:bufExplorerShowRelativePath=1 " Show relative paths. +The default is to show absolute paths. + + *g:bufExplorerShowTabBuffer* +To control weither or not to show buffers on for the specific tab or not, use: > + let g:bufExplorerShowTabBuffer=0 " No. + let g:bufExplorerShowTabBuffer=1 " Yes. +The default is not to show. + + *g:bufExplorerShowUnlisted* +To control whether to show unlisted buffer or not, use: > + let g:bufExplorerShowUnlisted=0 " Do not show unlisted buffers. + let g:bufExplorerShowUnlisted=1 " Show unlisted buffers. +The default is to NOT show unlisted buffers. + + *g:bufExplorerSortBy* +To control what field the buffers are sorted by, use: > + let g:bufExplorerSortBy='extension' " Sort by file extension. + let g:bufExplorerSortBy='fullpath' " Sort by full file path name. + let g:bufExplorerSortBy='mru' " Sort by most recently used. + let g:bufExplorerSortBy='name' " Sort by the buffer's name. + let g:bufExplorerSortBy='number' " Sort by the buffer's number. +The default is to sort by mru. + + *g:bufExplorerSplitBelow* +To control where the new split window will be placed above or below the +current window, use: > + let g:bufExplorerSplitBelow=1 " Split new window below current. + let g:bufExplorerSplitBelow=0 " Split new window above current. +The default is to use what ever is set by the global &splitbelow +variable. + + *g:bufExplorerSplitOutPathName* +To control whether to split out the path and file name or not, use: > + let g:bufExplorerSplitOutPathName=1 " Split the path and file name. + let g:bufExplorerSplitOutPathName=0 " Don't split the path and file + " name. +The default is to split the path and file name. + + *g:bufExplorerSplitRight* +To control where the new vsplit window will be placed to the left or right of +current window, use: > + let g:bufExplorerSplitRight=0 " Split left. + let g:bufExplorerSplitRight=1 " Split right. +The default is to use the global &splitright. + +=============================================================================== +CHANGE LOG *bufexplorer-changelog* + +7.2.8 - Enhancements: + * Thanks to Charles Campbell for integrating bufexplorer with GDBMGR. + http://mysite.verizon.net/astronaut/vim/index.html#GDBMGR +7.2.7 - Fix: + * My 1st attempt to fix the "cache" issue where buffers information + has changed but the cache/display does not reflect those changes. + More work still needs to be done. +7.2.6 - Fix: + * Thanks to Michael Henry for pointing out that I totally forgot to + update the inline help to reflect the previous change to the 'd' + and 'D' keys. Opps! +7.2.5 - Fix: + * Philip Morant suggested switching the command (bwipe) associated + with the 'd' key with the command (bdelete) associated with the 'D' + key. This made sense since the 'd' key is more likely to be used + compared to the 'D' key. +7.2.4 - Fix: + * I did not implement the patch provided by Godefroid Chapelle + correctly. I missed one line which happened to be the most + important one :) +7.2.3 - Enhancements: + * Thanks to David Fishburn for helping me out with a much needed + code overhaul as well as some awesome performance enhancements. + He also reworked the handling of tabs. + * Thanks to Vladimir Dobriakov for making the suggestions on + enhancing the documentation to include a better explaination of + what is contained in the main bufexplorer window. + * Thanks to Yuriy Ershov for added code that when the bufexplorer + window is opened, the cursor is now positioned at the line with the + active buffer (useful in non-MRU sort modes). + * Yuriy also added the abiltiy to cycle through the sort fields in + reverse order. + Fixes: + * Thanks to Michael Henry for supplying a patch that allows + bufexplorer to be opened even when there is one buffer or less. + * Thanks to Godefroid Chapelle for supplying a patch that fixed + MRU sort order after loading a session. +7.2.2 - Fixes: + * Thanks to David L. Dight for spotting and fixing an issue when + using ctrl^. bufexplorer would incorrectly handle the previous + buffer so that when ctrl^ was pressed the incorrect file was opened. +7.2.1 - Fixes: + * Thanks to Dimitar for spotting and fixing a feature that was + inadvertently left out of the previous version. The feature was + when bufexplorer was used together with WinManager, you could use + the tab key to open a buffer in a split window. +7.2.0 - Enhancements: + * For all those missing the \bs and \bv commands, these have now + returned. Thanks to Phil O'Connell for asking for the return of + these missing features and helping test out this version. + Fixes: + * Fixed problem with the bufExplorerFindActive code not working + correctly. + * Fixed an incompatibility between bufexplorer and netrw that caused + buffers to be incorrectly removed from the MRU list. +7.1.7 - Fixes: + * TaCahiroy fixed several issues related to opening a buffer in a + tab. +7.1.6 - Fixes: + * Removed ff=unix from modeline in bufexplorer.txt. Found by Bill + McCarthy. +7.1.5 - Fixes: + * Could not open unnamed buffers. Fixed by TaCahiroy. +7.1.4 - Fixes: + * Sometimes when a file's path has 'white space' in it, extra buffers + would be created containing each piece of the path. i.e: + opening c:\document and settings\test.txt would create a buffer + named "and" and a buffer named "Documents". This was reported and + fixed by TaCa Yoss. +7.1.3 - Fixes: + * Added code to allow only one instance of the plugin to run at a + time. Thanks Dennis Hostetler. +7.1.2 - Fixes: + * Fixed a jumplist issue spotted by JiangJun. I overlooked the + 'jumplist' and with a couple calls to 'keepjumps', everything is + fine again. + * Went back to just having a plugin file, no autoload file. By having + the autoload, WinManager was no longer working and without really + digging into the cause, it was easier to go back to using just a + plugin file. +7.1.1 - Fixes: + * A problem spotted by Thomas Arendsen Hein. + When running Vim (7.1.94), error E493 was being thrown. + Enhancements: + * Added 'D' for 'delete' buffer as the 'd' command was a 'wipe' + buffer. +7.1.0 - Another 'major' update, some by Dave Larson, some by me. + * Making use of 'autoload' now to make the plugin load quicker. + * Removed '\bs' and '\bv'. These are now controlled by the user. The + user can issue a ':sp' or ':vs' to create a horizontal or vertical + split window and then issue a '\be' + * Added handling of tabs. +7.0.17 - Fixed issue with 'drop' command. + Various enhancements and improvements. +7.0.16 - Fixed issue reported by Liu Jiaping on non Windows systems, which was + ... + Open file1, open file2, modify file1, open bufexplorer, you get the + following error: + + --------8<-------- + Error detected while processing function + 14_StartBufExplorer..14_SplitOpen: + line 4: + E37: No write since last change (add ! to override) + + But the worse thing is, when I want to save the current buffer and + type ':w', I get another error message: + E382: Cannot write, 'buftype' option is set + --------8<-------- + +7.0.15 - Thanks to Mark Smithfield for suggesting bufexplorer needed to handle + the ':args' command. +7.0.14 - Thanks to Randall Hansen for removing the requirement of terminal + versions to be recompiled with 'gui' support so the 'drop' command + would work. The 'drop' command is really not needed in terminal + versions. +7.0.13 - Fixed integration with WinManager. + Thanks to Dave Eggum for another update. + - Fix: The detailed help didn't display the mapping for toggling + the split type, even though the split type is displayed. + - Fixed incorrect description in the detailed help for toggling + relative or full paths. + - Deprecated s:ExtractBufferNbr(). Vim's str2nr() does the same + thing. + - Created a s:Set() function that sets a variable only if it hasn't + already been defined. It's useful for initializing all those + default settings. + - Removed checks for repetitive command definitions. They were + unnecessary. + - Made the help highlighting a little more fancy. + - Minor reverse compatibility issue: Changed ambiguous setting + names to be more descriptive of what they do (also makes the code + easier to follow): + Changed bufExplorerSortDirection to bufExplorerReverseSort + Changed bufExplorerSplitType to bufExplorerSplitVertical + Changed bufExplorerOpenMode to bufExplorerUseCurrentWindow + - When the BufExplorer window closes, all the file-local marks are + now deleted. This may have the benefit of cleaning up some of the + jumplist. + - Changed the name of the parameter for StartBufExplorer from + "split" to "open". The parameter is a string which specifies how + the buffer will be open, not if it is split or not. + - Deprecated DoAnyMoreBuffersExist() - it is a one line function + only used in one spot. + - Created four functions (SplitOpen(), RebuildBufferList(), + UpdateHelpStatus() and ReSortListing()) all with one purpose - to + reduce repeated code. + - Changed the name of AddHeader() to CreateHelp() to be more + descriptive of what it does. It now returns an array instead of + updating the window directly. This has the benefit of making the + code more efficient since the text the function returns is used a + little differently in the two places the function is called. + - Other minor simplifications. +7.0.12 - MAJOR Update. + This version will ONLY run with Vim version 7.0 or greater. + Dave Eggum has made some 'significant' updates to this latest + version: + - Added BufExplorerGetAltBuf() global function to be used in the + user’s rulerformat. + - Added g:bufExplorerSplitRight option. + - Added g:bufExplorerShowRelativePath option with mapping. + - Added current line highlighting. + - The split type can now be changed whether bufexplorer is opened + in split mode or not. + - Various major and minor bug fixes and speed improvements. + - Sort by extension. + Other improvements/changes: + - Changed the help key from '?' to to be more 'standard'. + - Fixed splitting of vertical bufexplorer window. + Hopefully I have not forgot something :) +7.0.11 - Fixed a couple of highlighting bugs, reported by David Eggum. He also + changed passive voice to active on a couple of warning messages. +7.0.10 - Fixed bug report by Xiangjiang Ma. If the 'ssl' option is set, + the slash character used when displaying the path was incorrect. +7.0.9 - Martin Grenfell found and eliminated an annoying bug in the + bufexplorer/winmanager integration. The bug was were an + annoying message would be displayed when a window was split or + a new file was opened in a new window. Thanks Martin! +7.0.8 - Thanks to Mike Li for catching a bug in the WinManager integration. + The bug was related to the incorrect displaying of the buffer + explorer's window title. +7.0.7 - Thanks to Jeremy Cowgar for adding a new enhancement. This + enhancement allows the user to press 'S', that is capital S, which + will open the buffer under the cursor in a newly created split + window. +7.0.6 - Thanks to Larry Zhang for finding a bug in the "split" buffer code. + If you force set g:bufExplorerSplitType='v' in your vimrc, and if you + tried to do a \bs to split the bufexplorer window, it would always + split horizontal, not vertical. He also found that I had a typeo in + that the variable g:bufExplorerSplitVertSize was all lower case in + the documentation which was incorrect. +7.0.5 - Thanks to Mun Johl for pointing out a bug that if a buffer was + modified, the '+' was not showing up correctly. +7.0.4 - Fixed a problem discovered first by Xiangjiang Ma. Well since I've + been using vim 7.0 and not 6.3, I started using a function (getftype) + that is not in 6.3. So for backward compatibility, I conditionaly use + this function now. Thus, the g:bufExplorerShowDirectories feature is + only available when using vim 7.0 and above. +7.0.3 - Thanks to Erwin Waterlander for finding a problem when the last + buffer was deleted. This issue got me to rewrite the buffer display + logic (which I've wanted to do for sometime now). + Also great thanks to Dave Eggum for coming up with idea for + g:bufExplorerShowDirectories. Read the above information about this + feature. +7.0.2 - Thanks to Thomas Arendsen Hein for finding a problem when a user + has the default help turned off and then brought up the explorer. An + E493 would be displayed. +7.0.1 - Thanks to Erwin Waterlander for finding a couple problems. + The first problem allowed a modified buffer to be deleted. Opps! The + second problem occurred when several files were opened, BufExplorer + was started, the current buffer was deleted using the 'd' option, and + then BufExplorer was exited. The deleted buffer was still visible + while it is not in the buffers list. Opps again! +7.0.0 - Thanks to Shankar R. for suggesting to add the ability to set + the fixed width (g:bufExplorerSplitVertSize) of a new window + when opening bufexplorer vertically and fixed height + (g:bufExplorerSplitHorzSize) of a new window when opening + bufexplorer horizontally. By default, the windows are normally + split to use half the existing width or height. +6.3.0 - Added keepjumps so that the jumps list would not get cluttered with + bufexplorer related stuff. +6.2.3 - Thanks to Jay Logan for finding a bug in the vertical split position + of the code. When selecting that the window was to be split + vertically by doing a '\bv', from then on, all splits, i.e. '\bs', + were split vertically, even though g:bufExplorerSplitType was not set + to 'v'. +6.2.2 - Thanks to Patrik Modesto for adding a small improvement. For some + reason his bufexplorer window was always showing up folded. He added + 'setlocal nofoldenable' and it was fixed. +6.2.1 - Thanks goes out to Takashi Matsuo for added the 'fullPath' sorting + logic and option. +6.2.0 - Thanks goes out to Simon Johann-Ganter for spotting and fixing a + problem in that the last search pattern is overridden by the search + pattern for blank lines. +6.1.6 - Thanks to Artem Chuprina for finding a pesky bug that has been around + for sometime now. The key mapping was causing the buffer + explored to close prematurely when vim was run in an xterm. The + key mapping is now removed. +6.1.5 - Thanks to Khorev Sergey. Added option to show default help or not. +6.1.4 - Thanks goes out to Valery Kondakoff for suggesting the addition of + setlocal nonumber and foldcolumn=0. This allows for line numbering + and folding to be turned off temporarily while in the explorer. +6.1.3 - Added folding. Did some code cleanup. Added the ability to force the + newly split window to be temporarily vertical, which was suggested by + Thomas Glanzmann. +6.1.2 - Now pressing the key will quit, just like 'q'. + Added folds to hide winmanager configuration. + If anyone had the 'C' option in their cpoptions they would receive + a E10 error on startup of BufExplorer. cpo is now saved, updated and + restored. Thanks to Charles E Campbell, Jr. + Attempted to make sure there can only be one BufExplorer window open + at a time. +6.1.1 - Thanks to Brian D. Goodwin for adding toupper to FileNameCmp. This + way buffers sorted by name will be in the correct order regardless of + case. +6.0.16 - Thanks to Andre Pang for the original patch/idea to get bufexplorer + to work in insertmode/modeless mode (evim). Added Initialize + and Cleanup autocommands to handle commands that need to be + performed when starting or leaving bufexplorer. +6.0.15 - Srinath Avadhanulax added a patch for winmanager.vim. +6.0.14 - Fix a few more bug that I thought I already had fixed. Thanks + to Eric Bloodworth for adding 'Open Mode/Edit in Place'. Added + vertical splitting. +6.0.13 - Thanks to Charles E Campbell, Jr. for pointing out some embarrassing + typos that I had in the documentation. I guess I need to run + the spell checker more :o) +6.0.12 - Thanks to Madoka Machitani, for the tip on adding the augroup command + around the MRUList autocommands. +6.0.11 - Fixed bug report by Xiangjiang Ma. '"=' was being added to the + search history which messed up hlsearch. +6.0.10 - Added the necessary hooks so that the Srinath Avadhanula's + winmanager.vim script could more easily integrate with this script. + Tried to improve performance. +6.0.9 - Added MRU (Most Recently Used) sort ordering. +6.0.8 - Was not resetting the showcmd command correctly. + Added nifty help file. +6.0.7 - Thanks to Brett Carlane for some great enhancements. Some are added, + some are not, yet. Added highlighting of current and alternate + filenames. Added splitting of path/filename toggle. Reworked + ShowBuffers(). + Changed my email address. +6.0.6 - Copyright notice added. Needed this so that it could be distributed + with Debian Linux. Fixed problem with the SortListing() function + failing when there was only one buffer to display. +6.0.5 - Fixed problems reported by David Pascoe, in that you where unable to + hit 'd' on a buffer that belonged to a files that no longer existed + and that the 'yank' buffer was being overridden by the help text when + the bufexplorer was opened. +6.0.4 - Thanks to Charles Campbell, Jr. for making this plugin more plugin + *compliant*, adding default keymappings of be and bs + as well as fixing the 'w:sortDirLabel not being defined' bug. +6.0.3 - Added sorting capabilities. Sort taken from explorer.vim. +6.0.2 - Can't remember. (2001-07-25) +6.0.1 - Initial release. + +=============================================================================== +TODO *bufexplorer-todo* + +- Nothing as of now, buf if you have any suggestions, drop me an email. + +=============================================================================== +CREDITS *bufexplorer-credits* + +Author: Jeff Lanzarotta + +Credit must go out to Bram Moolenaar and all the Vim developers for +making the world's best editor (IMHO). I also want to thank everyone who +helped and gave me suggestions. I wouldn't want to leave anyone out so I +won't list names. + +=============================================================================== +vim:tw=78:noet:wrap:ts=8:ft=help:norl: diff --git a/vim/.vim/bundle/bufexplorer/doc/tags b/vim/.vim/bundle/bufexplorer/doc/tags new file mode 100644 index 0000000..5432bc9 --- /dev/null +++ b/vim/.vim/bundle/bufexplorer/doc/tags @@ -0,0 +1,24 @@ +bufexplorer bufexplorer.txt /*bufexplorer* +bufexplorer-changelog bufexplorer.txt /*bufexplorer-changelog* +bufexplorer-credits bufexplorer.txt /*bufexplorer-credits* +bufexplorer-customization bufexplorer.txt /*bufexplorer-customization* +bufexplorer-installation bufexplorer.txt /*bufexplorer-installation* +bufexplorer-todo bufexplorer.txt /*bufexplorer-todo* +bufexplorer-usage bufexplorer.txt /*bufexplorer-usage* +bufexplorer-windowlayout bufexplorer.txt /*bufexplorer-windowlayout* +bufexplorer.txt bufexplorer.txt /*bufexplorer.txt* +buffer-explorer bufexplorer.txt /*buffer-explorer* +g:bufExplorerChgWin bufexplorer.txt /*g:bufExplorerChgWin* +g:bufExplorerDefaultHelp bufexplorer.txt /*g:bufExplorerDefaultHelp* +g:bufExplorerDetailedHelp bufexplorer.txt /*g:bufExplorerDetailedHelp* +g:bufExplorerFindActive bufexplorer.txt /*g:bufExplorerFindActive* +g:bufExplorerFuncRef bufexplorer.txt /*g:bufExplorerFuncRef* +g:bufExplorerReverseSort bufexplorer.txt /*g:bufExplorerReverseSort* +g:bufExplorerShowDirectories bufexplorer.txt /*g:bufExplorerShowDirectories* +g:bufExplorerShowRelativePath bufexplorer.txt /*g:bufExplorerShowRelativePath* +g:bufExplorerShowTabBuffer bufexplorer.txt /*g:bufExplorerShowTabBuffer* +g:bufExplorerShowUnlisted bufexplorer.txt /*g:bufExplorerShowUnlisted* +g:bufExplorerSortBy bufexplorer.txt /*g:bufExplorerSortBy* +g:bufExplorerSplitBelow bufexplorer.txt /*g:bufExplorerSplitBelow* +g:bufExplorerSplitOutPathName bufexplorer.txt /*g:bufExplorerSplitOutPathName* +g:bufExplorerSplitRight bufexplorer.txt /*g:bufExplorerSplitRight* diff --git a/vim/.vim/bundle/bufexplorer/plugin/bufexplorer.vim b/vim/.vim/bundle/bufexplorer/plugin/bufexplorer.vim new file mode 100755 index 0000000..8791363 --- /dev/null +++ b/vim/.vim/bundle/bufexplorer/plugin/bufexplorer.vim @@ -0,0 +1,1162 @@ +"============================================================================== +" Copyright: Copyright (C) 2001-2010 Jeff Lanzarotta +" 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, +" bufexplorer.vim is provided *as is* and comes with no +" warranty of any kind, either expressed or implied. In no +" event will the copyright holder be liable for any damages +" resulting from the use of this software. +" Name Of File: bufexplorer.vim +" Description: Buffer Explorer Vim Plugin +" Maintainer: Jeff Lanzarotta (delux256-vim at yahoo dot com) +" Last Changed: Friday, 22 October 2010 +" Version: See g:bufexplorer_version for version number. +" Usage: This file should reside in the plugin directory and be +" automatically sourced. +" +" You may use the default keymappings of +" +" be - Opens BE. +" bs - Opens horizontally window BE. +" bv - Opens vertically window BE. +" +" Or you can use +" +" ":BufExplorer" - Opens BE. +" ":BufExplorerHorizontalSplit" - Opens horizontally window BE. +" ":BufExplorerVerticalSplit" - Opens vertically window BE. +" +" For more help see supplied documentation. +" History: See supplied documentation. +"============================================================================== + +" Exit quickly if already running or when 'compatible' is set. {{{1 +if exists("g:bufexplorer_version") || &cp + finish +endif +"1}}} + +" Version number +let g:bufexplorer_version = "7.2.8" + +" Check for Vim version 700 or greater {{{1 +if v:version < 700 + echo "Sorry, bufexplorer ".g:bufexplorer_version."\nONLY runs with Vim 7.0 and greater." + finish +endif + +" Public Interface {{{1 +if maparg("be") =~ 'BufExplorer' + nunmap be +endif + +if maparg("bs") =~ 'BufExplorerHorizontalSplit' + nunmap bs +endif + +if maparg("bv") =~ 'BufExplorerVerticalSplit' + nunmap bv +endif + +nmap