Last active
September 3, 2016 03:57
-
-
Save ryotako/0e8898084aeac443ecd762c60e8b7dac to your computer and use it in GitHub Desktop.
inclineの設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" linewise increment {{{2 | |
map ga <Plug>(incline-inc) | |
map gx <Plug>(incline-dec) | |
vmap <expr> <C-a> mode() ==# "V" ? "\<Plug>(incline-inc)" : "\<C-a>" | |
vmap <expr> <C-x> mode() ==# "V" ? "\<Plug>(incline-dec)" : "\<C-x>" | |
vmap <expr> g<C-a> mode() ==# "V" ? "\<Plug>(incline-inc-inclined)" : "g\<C-a>" | |
vmap <expr> g<C-x> mode() ==# "V" ? "\<Plug>(incline-dec-inclined)" : "g\<C-x>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment