Add text bubbling commands to vimrc
This commit is contained in:
parent
9df36b0a3f
commit
b84f418c71
1 changed files with 10 additions and 0 deletions
10
vimrc
10
vimrc
|
@ -182,6 +182,16 @@ nmap <silent> <leader>cc :set invcursorcolumn<CR>
|
|||
" Toggle listmode
|
||||
map <silent> <F4> :set invlist<CR>
|
||||
|
||||
" Text bubbling (these depend on tpope's unimpaired plugin)
|
||||
nmap <C-Up> [e
|
||||
nmap <C-Down> ]e
|
||||
vmap <C-Up> [egv
|
||||
vmap <C-Down> ]egv
|
||||
|
||||
" Select last edited text after cut and paste
|
||||
nmap gV `[v`]
|
||||
|
||||
|
||||
" Command-T should open files in tabs when I hit <CR>; move opening files in
|
||||
" buffers to <C-b>
|
||||
let g:CommandTAcceptSelectionMap='<C-b>'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue