Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Im not sure if this had anything to with updateing to the current KDE.
My HOME and END keys do not work in Konsole or xterm. When I press them, I get a PC beep. They work fine in other applications. Tried the different keyboard settings in Konsole, but none of them work.
I think the problem is in readline's configuration. For an exhaustive explanation, check info readline
A fast solution would be
- create the environment variable INPUTRC
export INPUTRC=$HOME/.inputrc
- put in the file $HOME/.inputrc the lines
set editing-mode emacs
$if mode=emacs
Del: backward-delete-char
#lfd is backspace
lfd: delete-char
#this is the insert and end keys config
"\e[8~": end-of-line
"\e[7~": beginning-of-line
"\e[5~": backward-word
"\e[6~": forward-word
$endif
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.