diff options
author | Peter Tillemans <pti@snamellit.com> | 2012-10-08 12:10:24 +0200 |
---|---|---|
committer | Peter Tillemans <pti@snamellit.com> | 2012-10-08 12:10:24 +0200 |
commit | ef96b6c16e1e59c449ef31d658d3232135a3e482 (patch) | |
tree | 0b77f6a14c36c60d575943fff961a8f4476bb100 /plugins/colemak/colemak.plugin.zsh | |
parent | 370dbe4fc7caedea615f9543cdf27e70b1c93f2a (diff) | |
parent | 73f777053725ce61d6fada67ff3f174130dd8c94 (diff) | |
download | zsh-ef96b6c16e1e59c449ef31d658d3232135a3e482.tar.gz zsh-ef96b6c16e1e59c449ef31d658d3232135a3e482.tar.bz2 zsh-ef96b6c16e1e59c449ef31d658d3232135a3e482.zip |
Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/colemak/colemak.plugin.zsh')
-rw-r--r-- | plugins/colemak/colemak.plugin.zsh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/colemak/colemak.plugin.zsh b/plugins/colemak/colemak.plugin.zsh new file mode 100644 index 000000000..34d42c280 --- /dev/null +++ b/plugins/colemak/colemak.plugin.zsh @@ -0,0 +1,22 @@ +# ctrl-j newline +bindkey '^n' accept-line +bindkey -a '^n' accept-line + +# another rotation to match qwerty +bindkey -a 'n' down-line-or-history +bindkey -a 'e' up-line-or-history +bindkey -a 'i' vi-forward-char + +# make qwerty +bindkey -a 'k' vi-repeat-search +bindkey -a 'K' vi-rev-repeat-search +bindkey -a 'u' vi-insert +bindkey -a 'U' vi-insert-bol +bindkey -a 'l' vi-undo-change +bindkey -a 'N' vi-join + +# spare +bindkey -a 'j' vi-forward-word-end +bindkey -a 'J' vi-forward-blank-word-end + +lesskey $ZSH_CUSTOM/plugins/colemak/colemak-less |