Aterm의 백스페이스 및 삭제 키에 대한 키 코드를 찾는 방법

Aterm의 백스페이스 및 삭제 키에 대한 키 코드를 찾는 방법

다운로드해서 컴파일한 후 aterm 1.0.1을 설치했습니다. 백스페이스나 삭제 키를 사용할 수 없습니다. 나는 온라인에서 찾을 수 있는 관련된 모든 것을 시도했습니다.

aterm*backspacekey: \010
aterm*deletekey: \177

aterm*backspacekey: ^?

옵션으로 다시 컴파일하기도 했습니다.

--disable-backspace-key
    disable any handling of the backspace key by us - let the X server
    do it
--disable-delete-key
    disable any handling of the delete key by us - let the X server
    do it

다시 설치하고 시작하면.. 용어에 뭔가를 입력하고 백스페이스나 삭제를 누르면 어떤 방식으로 빌드하든 앞으로 이동합니다. 다른 "키 코드"를 시도하면 그냥 키 코드에 입력됩니다. 화면.

~에 따르면이것나는 지금까지 거의 읽지 않았습니다.

At any rate, first find out whether the terminfo entry for xterm is in
accordance with your xterm settings: infocmp | grep kbs
should return a line which includes kbs=\177. This means DEL (or ^?)
is mapped to the backspace key, which is what we want. 

이것이 내가 얻은 것입니다.

$infocmp | grep kbs

kNXT=\E[6;2~, kPRV=\E[5;2~, kRIT=\E[1;2C, kb2=\EOE, kbs=^H,

BASH sh를 사용하고 있습니다. 잘못된 Linux, i3 wm.

감사해요

관련 정보