From 86d715585406bfff8f20f7fa8ba5d2e1dc3f10ea Mon Sep 17 00:00:00 2001 From: Alex Wood Date: Sat, 27 Jun 2015 15:49:28 -0700 Subject: [PATCH] Make numpad enter work --- zsh/key-bindings.zsh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zsh/key-bindings.zsh b/zsh/key-bindings.zsh index c1c7d8e..4eb39a2 100644 --- a/zsh/key-bindings.zsh +++ b/zsh/key-bindings.zsh @@ -8,3 +8,9 @@ bindkey '^r' history-incremental-search-backward # [Ctrl-r] - Search backward # emacs style bindkey '^a' beginning-of-line bindkey '^e' end-of-line + +# Make numpad enter work +bindkey -s "^[Op" "0" +bindkey -s "^[Ol" "." +bindkey -s "^[OM" "^M" +