Added vim-indent-guides, upgraded skwp-vim-rspec

This commit is contained in:
yan 2011-12-23 21:06:43 -08:00
parent 10da9de4ff
commit 5423aaa052
5 changed files with 10 additions and 1 deletions

3
.gitmodules vendored
View File

@ -181,3 +181,6 @@
[submodule "vim/bundle/skwp-vim-rspec"]
path = vim/bundle/skwp-vim-rspec
url = https://github.com/skwp/vim-rspec
[submodule "vim/bundle/nathanaelkane-vim-indent-guides"]
path = vim/bundle/nathanaelkane-vim-indent-guides
url = https://github.com/nathanaelkane/vim-indent-guides

View File

@ -246,6 +246,7 @@ files contain key mappings as well (TODO: probably will move them out to skwp-ke
**Utility**
* \gi - toggle visual indentation guides
* ,cf - Copy Filename of current file into system (not vi) paste buffer
* ,cc - (Current command) copies the command under your cursor and executes it in vim. Great for testing single line changes to vimrc.
* ,yw - yank a word from anywhere within the word (so you don't have to go to the beginning of it)
@ -321,6 +322,7 @@ Included vim plugins
* ruby-debug-ide - not quite working for me, but maybe it will for you. supposedly a graphical debugger you can step through
* Gundo - visualize your undos - pretty amazing plugin. Hit ,u with my keymappings to trigger it, very user friendly
* slime - use ctrl-c,ctrl-c to send text to a running irb/pry/console. To start the console, you must use screen with a named session: "screen -S [name] [cmd]", ex: "screen -S pry pry"
* vim-indent-guides - use \gi to turn on visual indentation guides. off by default
**General enhancements that don't add new commands**

@ -0,0 +1 @@
Subproject commit f1c115ce5dba08968a0b4693aa601b0eb5bd4609

@ -1 +1 @@
Subproject commit e9334d5742879a5b298845964c8c3c8db590144c
Subproject commit cea66577a7d3329a0dcd5d57bd7a0bdd9029459d

View File

@ -0,0 +1,3 @@
let g:indent_guides_auto_colors = 1
let g:indent_guides_start_level = 2
let g:indent_guides_guide_size = 1