Created
March 31, 2015 01:45
-
-
Save ntnn/1b8435d42c2d518c7557 to your computer and use it in GitHub Desktop.
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
#vim: set ft=zsh | |
vim-skip-forward() { | |
CURSOR=$(($CURSOR + ($#RBUFFER/2))) | |
} | |
vim-skip-backward() { | |
CURSOR=$(($CURSOR - (($#LBUFFER/2)+1))) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment