ZSH Config: setup home & end keys for line navigation
This commit is contained in:
parent
29e7f7f691
commit
8aa168f367
1 changed files with 17 additions and 0 deletions
|
@ -27,6 +27,23 @@ WORDCHARS=${WORDCHARS//\/[&.;]} # Don't consider
|
|||
####################################################################################################################################################
|
||||
|
||||
|
||||
####################################################################################################################################################
|
||||
# Keybindings section
|
||||
####################################################################################################################################################
|
||||
bindkey -e #
|
||||
bindkey '^[[7~' beginning-of-line # Home key
|
||||
bindkey '^[[H' beginning-of-line # Home key
|
||||
if [[ "${terminfo[khome]}" != "" ]]; then
|
||||
bindkey "${terminfo[khome]}" beginning-of-line # [Home] - Go to beginning of line
|
||||
fi
|
||||
bindkey '^[[8~' end-of-line # End key
|
||||
bindkey '^[[F' end-of-line # End key
|
||||
if [[ "${terminfo[kend]}" != "" ]]; then
|
||||
bindkey "${terminfo[kend]}" end-of-line # [End] - Go to end of line
|
||||
fi
|
||||
####################################################################################################################################################
|
||||
|
||||
|
||||
####################################################################################################################################################
|
||||
# Theming section
|
||||
####################################################################################################################################################
|
||||
|
|
Loading…
Reference in a new issue