diff options
author | Mat Schaffer <mat@schaffer.me> | 2012-03-17 22:03:01 -0300 |
---|---|---|
committer | Felix Dreissig <f30@f30.me> | 2012-10-13 23:50:40 +0200 |
commit | 3839c6e9e62a2671b1d3f5662e4d2bc3984c3f9e (patch) | |
tree | a4711ca73745512fff22316e19e11288c69175d6 /lib/key-bindings.zsh | |
parent | f7708d4181374cfbd223e071f7253018f28e5509 (diff) | |
download | zsh-3839c6e9e62a2671b1d3f5662e4d2bc3984c3f9e.tar.gz zsh-3839c6e9e62a2671b1d3f5662e4d2bc3984c3f9e.tar.bz2 zsh-3839c6e9e62a2671b1d3f5662e4d2bc3984c3f9e.zip |
Don't clobber standard Esc+. behavior
Esc+. works as "last arg" on both bash and zsh. Seems like a shame to introduce a new standard.
Conflicts:
lib/key-bindings.zsh
Diffstat (limited to 'lib/key-bindings.zsh')
-rw-r--r-- | lib/key-bindings.zsh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/key-bindings.zsh b/lib/key-bindings.zsh index 195bbb38e..8168c8d90 100644 --- a/lib/key-bindings.zsh +++ b/lib/key-bindings.zsh @@ -6,7 +6,6 @@ bindkey -e # Use emacs key bindings bindkey '\ew' kill-region # [Esc-w] - Kill from the cursor to the mark bindkey -s '\el' 'ls\n' # [Esc-l] - run command: ls -bindkey -s '\e.' '..\n' # [Esc-.] - run command: .. (up directory) bindkey '^r' history-incremental-search-backward # [Ctrl-r] - Search backward incrementally for a specified string. The string may begin with ^ to anchor the search to the beginning of the line. bindkey '^[[5~' up-line-or-history # [PageUp] - Up a line of history bindkey '^[[6~' down-line-or-history # [PageDown] - Down a line of history |