Commit d2754402 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #290 from arthurkalm/delete-key-working

Make the delete key work correctly, instead of outputting a ~
parents 396dc787 7d9628b2
...@@ -20,6 +20,11 @@ bindkey ' ' magic-space # also do history expansion on space ...@@ -20,6 +20,11 @@ bindkey ' ' magic-space # also do history expansion on space
bindkey '^[[Z' reverse-menu-complete bindkey '^[[Z' reverse-menu-complete
# Make the delete key (or Fn + Delete on the Mac) work instead of outputting a ~
bindkey "^[[3~" delete-char
bindkey "^[3;5~" delete-char
bindkey "\e[3~" delete-char
# consider emacs keybindings: # consider emacs keybindings:
#bindkey -e ## emacs key bindings #bindkey -e ## emacs key bindings
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment