rigoletto@
Developer
Hi,
I've installed x11/alacritty and I cant' get Home/End (beginning-of-line/beginning-of-line) working... ?
I just uncommented these lines (to make a few things work) of the default configuration file:
Thanks!
[EDIT]
.zshrc[ (just in case)
I've installed x11/alacritty and I cant' get Home/End (beginning-of-line/beginning-of-line) working... ?
I just uncommented these lines (to make a few things work) of the default configuration file:
Code:
key_bindings:
- { key: Paste, action: Paste }
- { key: Copy, action: Copy }
- { key: L, mods: Control, action: ClearLogNotice }
- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
bindkey -a
return:
Code:
"^[[7~" beginning-of-line
"^[[8~" end-of-line
Thanks!
[EDIT]
.zshrc[ (just in case)
Code:
bindkey -e
bindkey "^[[7~" beginning-of-line
bindkey "^[[8~" end-of-line
bindkey "\e[2~" overwrite-mode
bindkey "\e[3~" delete-char
bindkey "^[Od" backward-word # rxvt
bindkey "\e[1;5D" backward-word
bindkey "^[Oc" forward-word # rxvt
bindkey "\e[1;5C" forward-word
bindkey "^[[A" history-search-backward
bindkey "^[[B" history-search-forward
bindkey "\e[5~" history-beginning-search-backward
bindkey "\e[6~" history-beginning-search-forward
bindkey "^W" backward-delete-word