nix-config/home/zsh/extra-mappings.zsh
Bruno BELANYI b90be0acdf
All checks were successful
continuous-integration/drone/push Build is passing
home: zsh: remove trailing whitespace
2021-05-30 00:46:09 +02:00

15 lines
437 B
Bash

# Fix delete key not working
bindkey "\e[3~" delete-char
# Fix Ctrl+u killing from the cursor instead of the whole line
bindkey \^U backward-kill-line
# Use Ctrl+x-(Ctrl+)e to edit the current command line in VISUAL/EDITOR
autoload -U edit-command-line
zle -N edit-command-line
bindkey '^xe' edit-command-line
bindkey '^x^e' edit-command-line
# Enable Shift-Tab to go backwards in completion list
bindkey '^[[Z' reverse-menu-complete