mirror of
https://github.com/prurigro/darkcloud-vimconfig.git
synced 2024-11-22 14:44:11 -05:00
Grouped all the mouse stuff together in keyboard.vim and labelled the
mouse settings that hadn't already been labelled.
This commit is contained in:
parent
5c71fa3587
commit
aae6cac6cd
1 changed files with 17 additions and 14 deletions
|
@ -43,12 +43,20 @@
|
||||||
"
|
"
|
||||||
" Mappings:
|
" Mappings:
|
||||||
" (mouse)
|
" (mouse)
|
||||||
|
" <C-LeftMouse> | (N) -> select the current line in normal mode
|
||||||
|
" <C-LeftMouse> | (I) -> select the current line in input mode
|
||||||
|
"
|
||||||
" <Ctrl-ScrollUp> | (A) -> scroll right a few characters at a time
|
" <Ctrl-ScrollUp> | (A) -> scroll right a few characters at a time
|
||||||
" <Ctrl-ScrollDown> | (A) -> scroll left a few characters at a time
|
" <Ctrl-ScrollDown> | (A) -> scroll left a few characters at a time
|
||||||
|
"
|
||||||
" <Alt-ScrollUp> | (A) -> scroll right one character at a time
|
" <Alt-ScrollUp> | (A) -> scroll right one character at a time
|
||||||
" <Alt-ScrollDown> | (A) -> scroll left one character at a time
|
" <Alt-ScrollDown> | (A) -> scroll left one character at a time
|
||||||
" <Shift-MClick> | (A) -> unbind this from vim so xorg can paste
|
" <Shift-MClick> | (A) -> unbind this from vim so xorg can paste
|
||||||
"
|
"
|
||||||
|
" <A-LeftMouse> | (N) -> select the current paragraph in normal mode
|
||||||
|
" <A-LeftMouse> | (V) -> select the current paragraph in visual mode
|
||||||
|
" <A-LeftMouse> | (I) -> select the current paragraph in input mode
|
||||||
|
"
|
||||||
" (tabs)
|
" (tabs)
|
||||||
" <Leader>9 | (A) -> go to the next open tab
|
" <Leader>9 | (A) -> go to the next open tab
|
||||||
" <Leader>0 | (A) -> go to the previous open tab
|
" <Leader>0 | (A) -> go to the previous open tab
|
||||||
|
@ -147,13 +155,6 @@
|
||||||
" <Shift-Right> | (V) -> select a few lines right
|
" <Shift-Right> | (V) -> select a few lines right
|
||||||
" <Shift-Left> | (V) -> select a few lines left
|
" <Shift-Left> | (V) -> select a few lines left
|
||||||
"
|
"
|
||||||
" <C-LeftMouse> | (N) -> select the current line in normal mode
|
|
||||||
" <C-LeftMouse> | (I) -> select the current line in input mode
|
|
||||||
"
|
|
||||||
" <A-LeftMouse> | (N) -> select the current paragraph in normal mode
|
|
||||||
" <A-LeftMouse> | (V) -> select the current paragraph in visual mode
|
|
||||||
" <A-LeftMouse> | (I) -> select the current paragraph in input mode
|
|
||||||
"
|
|
||||||
" (paste functions)
|
" (paste functions)
|
||||||
" <Leader>p | (N) -> view the paste buffers and register contents
|
" <Leader>p | (N) -> view the paste buffers and register contents
|
||||||
" <Leader>p<Direction> | (N) -> paste in the direction entered
|
" <Leader>p<Direction> | (N) -> paste in the direction entered
|
||||||
|
@ -261,6 +262,15 @@
|
||||||
noremap <A-ScrollWheelDown> zh
|
noremap <A-ScrollWheelDown> zh
|
||||||
inoremap <A-ScrollWheelUp> <C-O>zl
|
inoremap <A-ScrollWheelUp> <C-O>zl
|
||||||
inoremap <A-ScrollWheelDown> <C-O>zh
|
inoremap <A-ScrollWheelDown> <C-O>zh
|
||||||
|
|
||||||
|
"hold ctrl while clicking to select the current line
|
||||||
|
nnoremap <C-LeftMouse> <LeftMouse>V
|
||||||
|
inoremap <C-LeftMouse> <Esc><LeftMouse>V
|
||||||
|
|
||||||
|
"hold alt while clicking to select the current paragraph
|
||||||
|
nnoremap <A-LeftMouse> <LeftMouse>vip
|
||||||
|
xnoremap <A-LeftMouse> <Esc><LeftMouse>vip
|
||||||
|
inoremap <A-LeftMouse> <LeftMouse>vip
|
||||||
"}
|
"}
|
||||||
|
|
||||||
"TABS:{
|
"TABS:{
|
||||||
|
@ -458,13 +468,6 @@
|
||||||
xnoremap <C-Down> G$
|
xnoremap <C-Down> G$
|
||||||
xnoremap <C-Right> $
|
xnoremap <C-Right> $
|
||||||
xnoremap <C-Left> ^
|
xnoremap <C-Left> ^
|
||||||
|
|
||||||
nnoremap <C-LeftMouse> <LeftMouse>V
|
|
||||||
inoremap <C-LeftMouse> <Esc><LeftMouse>V
|
|
||||||
|
|
||||||
nnoremap <A-LeftMouse> <LeftMouse>vip
|
|
||||||
xnoremap <A-LeftMouse> <Esc><LeftMouse>vip
|
|
||||||
inoremap <A-LeftMouse> <LeftMouse>vip
|
|
||||||
"}
|
"}
|
||||||
|
|
||||||
"PASTE:{
|
"PASTE:{
|
||||||
|
|
Loading…
Reference in a new issue