summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMat Schaffer <mat@schaffer.me>2012-03-17 22:03:01 -0300
committerMat Schaffer <mat@schaffer.me>2012-03-17 22:03:01 -0300
commit5f72c6313643f3e627394c540192b77781c08178 (patch)
treeb8f4cdfef31a757a183ab3c2776926dd3bff21dc
parent1120f973054836eeb53750f57d69fbec41a340dc (diff)
downloadzsh-5f72c6313643f3e627394c540192b77781c08178.tar.gz
zsh-5f72c6313643f3e627394c540192b77781c08178.tar.bz2
zsh-5f72c6313643f3e627394c540192b77781c08178.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.
-rw-r--r--lib/key-bindings.zsh1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/key-bindings.zsh b/lib/key-bindings.zsh
index 5c1b90bfa..5f499f3e8 100644
--- a/lib/key-bindings.zsh
+++ b/lib/key-bindings.zsh
@@ -3,7 +3,6 @@
bindkey -e
bindkey '\ew' kill-region
bindkey -s '\el' "ls\n"
-bindkey -s '\e.' "..\n"
bindkey '^r' history-incremental-search-backward
bindkey "^[[5~" up-line-or-history
bindkey "^[[6~" down-line-or-history