Convert more keys to terminfo

This commit is contained in:
Thomas Avé 2022-08-09 15:11:55 +02:00
parent 0a60831c24
commit a6f315f8da
1 changed files with 3 additions and 3 deletions

View File

@ -35,9 +35,9 @@ bindkey "$terminfo[kcuu1]" up-line-or-beginning-search # Up
bindkey "$terminfo[kcud1]" down-line-or-beginning-search # Down
# Use Home, End to go to beginning or end of lines
bindkey "^[[H" beginning-of-line
bindkey "^[[F" end-of-line
bindkey "^[[3~" delete-char
bindkey "$terminfo[khome]" beginning-of-line
bindkey "$terminfo[kend]" end-of-line
bindkey "$terminfo[kdch1]" delete-char
zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' 'r:|=*' 'l:|=* r:|=*'
autoload -Uz compinit && compinit