X가 없는 터미널에서 HOME, END 작업을 수행하는 방법

X가 없는 터미널에서 HOME, END 작업을 수행하는 방법

내 현재 키 구성은 다음과 같습니다.

typeset -A key

key[Home]=${terminfo[khome]}
key[End]=${terminfo[kend]}
key[Insert]=${terminfo[kich1]}
key[Delete]=${terminfo[kdch1]}
key[Up]=${terminfo[kcuu1]}
key[Down]=${terminfo[kcud1]}
key[Left]=${terminfo[kcub1]}
key[Right]=${terminfo[kcuf1]}
key[PageUp]=${terminfo[kpp]}
key[PageDown]=${terminfo[knp]}

# setup key accordingly
[[ -n "${key[Home]}"    ]]  && bindkey  "${key[Home]}"    beginning-of-line
[[ -n "${key[End]}"     ]]  && bindkey  "${key[End]}"     end-of-line
[[ -n "${key[Insert]}"  ]]  && bindkey  "${key[Insert]}"  overwrite-mode
[[ -n "${key[Delete]}"  ]]  && bindkey  "${key[Delete]}"  delete-char
[[ -n "${key[Up]}"      ]]  && bindkey  "${key[Up]}"      up-line-or-history
[[ -n "${key[Down]}"    ]]  && bindkey  "${key[Down]}"    down-line-or-history
[[ -n "${key[Left]}"    ]]  && bindkey  "${key[Left]}"    backward-char
[[ -n "${key[Right]}"   ]]  && bindkey  "${key[Right]}"   forward-char

# Finally, make sure the terminal is in application mode, when zle is
# active. Only then are the values from $terminfo valid.
function zle-line-init () {
    echoti smkx
}
function zle-line-finish () {
    echoti rmkx
}

if [ -n "${DISPLAY:-}" ]; then
   zle -N zle-line-init
   zle -N zle-line-finish
fi

전체 및 기타 zsh 파일은 여기에 있습니다:https://github.com/Cynede/dotfiles/blob/master/.zsh/config.sh

문제는 bindkey "${key[Home]}" beginning-of-lineXorg를 실행하지 않는 터미널에서는 이것이 작동하지 않는다는 것입니다. 및 ~에 붙여넣었습니다 . Xorg 없이 어떻게 작동하게 할 수 있나요?HOMEEND

답변1

zsh의 특수 매개변수는 $terminfo시스템의 terminfo 데이터베이스의 데이터로 채워집니다.

귀하의 경우에는 귀하가 사용하고 있는 단말기의 데이터베이스 항목이 잘못된 것 같습니다.

terminfo 데이터베이스는 환경 변수 값을 기반으로 색인이 생성됩니다 $TERM.

따라서 그것이 $TERM올바르지 않거나 데이터베이스가 올바르지 않습니다.

그거 무슨 터미널이에요? 그것은 일부 BSD 운영 체제의 콘솔입니까? 무엇이 포함되어 있나요 $TERM? 로컬로 로그인했거나 ssh/rsh를 통해 일부 원격 시스템(아마도 다른 terminfo 데이터베이스를 사용하여)에 로그인했습니까?

관련 정보