diff options
author | Xavier Lacoste <xavier.lacoste@inria.fr> | 2012-09-27 16:50:23 +0200 |
---|---|---|
committer | Xavier Lacoste <xavier.lacoste@inria.fr> | 2012-09-27 16:50:23 +0200 |
commit | 23657840a1ca31ffbce8f84d96d3063f5b4b4319 (patch) | |
tree | 5f5f354fe11c59f46da6e0a9a40db895a760d7af /plugins/colemak/colemak.plugin.zsh | |
parent | ce74be1e1dfbccd45ced3314fd4a4c8869a49ec4 (diff) | |
parent | 25a9cddc2191a1c6751d1e385389c0787a597a3e (diff) | |
download | zsh-23657840a1ca31ffbce8f84d96d3063f5b4b4319.tar.gz zsh-23657840a1ca31ffbce8f84d96d3063f5b4b4319.tar.bz2 zsh-23657840a1ca31ffbce8f84d96d3063f5b4b4319.zip |
Merge remote-tracking branch 'upstream/master'
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 |