Added vim-session; :SaveSession and :OpenSession [Fix #322]
This commit is contained in:
parent
0d58568c9c
commit
5eb6a22c06
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,6 +9,7 @@ vim/spell
|
|||||||
vim/after/.vimrc.after
|
vim/after/.vimrc.after
|
||||||
vim/.vundles.local
|
vim/.vundles.local
|
||||||
vim/bundle
|
vim/bundle
|
||||||
|
vim/sessions
|
||||||
.netrwhist
|
.netrwhist
|
||||||
bin/subl
|
bin/subl
|
||||||
tags
|
tags
|
||||||
|
@ -411,6 +411,7 @@ If you omit the key combo, you'll get a list of all the maps. You can do the sam
|
|||||||
* change-inside-surroundings - change content inside delimiters like quotes/brackets
|
* change-inside-surroundings - change content inside delimiters like quotes/brackets
|
||||||
* Specky - used for color highlighting rspec correctly even if specs live outside of spec/ (rails.vim doesn't handle this)
|
* Specky - used for color highlighting rspec correctly even if specs live outside of spec/ (rails.vim doesn't handle this)
|
||||||
* Ag - use :Ag to search across multiple files. Faster than Grep and Ack.
|
* Ag - use :Ag to search across multiple files. Faster than Grep and Ack.
|
||||||
|
* vim-session: use `:SaveSession` and `:OpenSession` to come back to your saved window layout
|
||||||
|
|
||||||
#### General enhancements that don't add new commands
|
#### General enhancements that don't add new commands
|
||||||
|
|
||||||
|
@ -65,6 +65,8 @@ map ,{ ysiw{
|
|||||||
vmap ,} c{ <C-R>" }<ESC>
|
vmap ,} c{ <C-R>" }<ESC>
|
||||||
vmap ,{ c{<C-R>"}<ESC>
|
vmap ,{ c{<C-R>"}<ESC>
|
||||||
|
|
||||||
|
map ,` ysiw`
|
||||||
|
|
||||||
" gary bernhardt's hashrocket
|
" gary bernhardt's hashrocket
|
||||||
imap <c-l> <space>=><space>
|
imap <c-l> <space>=><space>
|
||||||
|
|
||||||
|
@ -100,6 +100,9 @@ Bundle "vim-scripts/lastpos.vim"
|
|||||||
Bundle "vim-scripts/sudo.vim"
|
Bundle "vim-scripts/sudo.vim"
|
||||||
Bundle "xsunsmile/showmarks.git"
|
Bundle "xsunsmile/showmarks.git"
|
||||||
Bundle "terryma/vim-multiple-cursors"
|
Bundle "terryma/vim-multiple-cursors"
|
||||||
|
"vim-misc is required for vim-session
|
||||||
|
Bundle "xolox/vim-misc"
|
||||||
|
Bundle "xolox/vim-session"
|
||||||
|
|
||||||
" Text objects
|
" Text objects
|
||||||
Bundle "austintaylor/vim-indentobject"
|
Bundle "austintaylor/vim-indentobject"
|
||||||
|
Loading…
Reference in New Issue
Block a user