Ctrl+화살표를 누르면 터미널이 이상한 모드로 전환되는 이유는 무엇입니까?

Ctrl+화살표를 누르면 터미널이 이상한 모드로 전환되는 이유는 무엇입니까?

GuakeCtrl+Left 또는 Ctrl+Right 또는 마지막 항목을 입력하면 gnome-terminal동작이 일부 비정상 모드로 변경됩니다. 키 입력은 Nano 실행 등 -처럼 동작합니다 arrow up. +이 기능을 비활성화하려면 어떻게 해야 합니까?arrow downv특징?

고쳐 쓰다:내 친구가 X.org 단축키라고 했는데... 어떻게 비활성화하나요? 구글링해도 소용없었는데..

UPD2:이것은무슨 일이 일어나고 있는지 보여주는 비디오.

답변1

해결책은 매우 우아하고 간단합니다. 편집 /etc/inputrc및 비활성화 입니다 vi mode.

업데이트된 파일은 다음과 같습니다 inputrc.

# /etc/inputrc - global inputrc for libreadline
# See readline(3readline) and `info rluserman' for more information.

# Be 8 bit clean.
set input-meta on
set output-meta on

#set editing-mode vi

# To allow the use of 8bit-characters like the german umlauts, uncomment
# the line below. However this makes the meta key not work as a meta key,
# which is annoying to those which don't need to type in 8-bit characters.

# set convert-meta off

# try to enable the application keypad when it is called.  Some systems
# need this to enable the arrow keys.
# set enable-keypad on

# see /usr/share/doc/bash/inputrc.arrows for other codes of arrow keys

# do not bell on tab-completion
# set bell-style none
# set bell-style visible

# some defaults / modifications for the emacs mode
#$if mode=emacs

# allow the use of the Home/End keys
"\e[1~": beginning-of-line
"\e[4~": end-of-line

# allow the use of the Delete/Insert keys
"\e[3~": delete-char
"\e[2~": quoted-insert

# mappings for "page up" and "page down" to step to the beginning/end
# of the history
# "\e[5~": beginning-of-history
# "\e[6~": end-of-history

# alternate mappings for "page up" and "page down" to search the history
# "\e[5~": history-search-backward
# "\e[6~": history-search-forward

# mappings for Ctrl-left-arrow and Ctrl-right-arrow for word moving
"\e[1;5C": forward-word
"\e[1;5D": backward-word
"\e[5C": forward-word
"\e[5D": backward-word
"\e\e[C": forward-word
"\e\e[D": backward-word

$if term=rxvt
"\e[8~": end-of-line
"\eOc": forward-word
"\eOd": backward-word
$endif

# for non RH/Debian xterm, can't hurt for RH/Debian xterm
# "\eOH": beginning-of-line
# "\eOF": end-of-line

# for freebsd console
# "\e[H": beginning-of-line
# "\e[F": end-of-line

#$endif

이 패턴에 대해 자세히 읽어봐야 합니다. 여러분 모두의 노고에 감사드립니다!

답변2

나는 또한 같은 문제에 직면했습니다. 내 /etc/inputrc구성은 정확했지만 이상한 이유로 뼈대 구성을 사용하고 ~/.inputrc비활성화했습니다 /etc/inputrc.

그래서 내 해결책은 다음과 같습니다.

rm ~/.inputrc

답변3

제목 표시줄 에 따르면 nano's다음을 누르면 bash 기록 파일이 편집됩니다 v.

/tmp/bash-fc-1212173730

나는 의심 Ctrl- LeftCtrl- Right대화형 기록 모드를 활성화하고 있습니다.

및 에 대한 바인딩을 .bashrc포함시켰 습니까 ?history-search-backwardhistory-search-forward

.bashrc또는 의 바인딩 라인을 주석 처리하거나 제거하여 이 동작을 비활성화할 수 있습니다 .bash_aliases.

관련 정보