diff options
author | Loïc Yhuel <loic.yhuel@gmail.com> | 2011-07-23 23:09:03 +0200 |
---|---|---|
committer | Loïc Yhuel <loic.yhuel@gmail.com> | 2011-07-23 23:09:03 +0200 |
commit | 428f18cf428fd86bd6e99c4363e5f25d0e392506 (patch) | |
tree | 6518ee00d78592155ced2c9c7c388baaf0c2b51c /lib/key-bindings.zsh | |
parent | 3350c2298f6e0b629c8efe9821262a093f975fd3 (diff) | |
download | zsh-428f18cf428fd86bd6e99c4363e5f25d0e392506.tar.gz zsh-428f18cf428fd86bd6e99c4363e5f25d0e392506.tar.bz2 zsh-428f18cf428fd86bd6e99c4363e5f25d0e392506.zip |
Add key bindings for gnome-terminal on Fedora
Diffstat (limited to 'lib/key-bindings.zsh')
-rw-r--r-- | lib/key-bindings.zsh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/key-bindings.zsh b/lib/key-bindings.zsh index 9c2dda35a..5c1b90bfa 100644 --- a/lib/key-bindings.zsh +++ b/lib/key-bindings.zsh @@ -14,10 +14,15 @@ bindkey '^[[B' down-line-or-search bindkey "^[[H" beginning-of-line bindkey "^[[1~" beginning-of-line +bindkey "^[OH" beginning-of-line bindkey "^[[F" end-of-line bindkey "^[[4~" end-of-line +bindkey "^[OF" end-of-line bindkey ' ' magic-space # also do history expansion on space +bindkey "^[[1;5C" forward-word +bindkey "^[[1;5D" backward-word + bindkey '^[[Z' reverse-menu-complete # Make the delete key (or Fn + Delete on the Mac) work instead of outputting a ~ |