I'm having problems with my backspace key and have looked all around in google without finding the issue.
In TERM=xterm (inside of Xwindows/xfce), my backspace and delete keys work file. Typing in "C-v <key>" I get the following:
Code:
Main delete: ^[[3~
NumPad delete: ^[[3~
Backspace: ^?
However in the normal terminal (TERM=linux) (not-X), I get the following:
Code:
Main delete: ^?
NumPad delete: ^[[3~
Backspace: ^?
So when in an X terminal (like konsole), I get the proper delete/backspace behavior, but in the normal linux terminal, only the number pad delete key (the '.') works, and the main delete key acts as a backspace.
Environment:
Slackware 10.2
Kernel: 2.6.15
Computer: ThinkPad T43
Keyboards: laptop & Microsoft Natural Keyboard Elite
This may or may not help:
Code:
bind -p | grep del
"\C-h": backward-delete-char
"\C-?": backward-delete-char
"\C-d": delete-char
"\M-[3~": delete-char
# delete-char-or-list (not bound)
"\M-\\": delete-horizontal-space
# forward-backward-delete-char (not bound)
# vi-delete (not bound)
# vi-delete-to (not bound)
# vi-overstrike-delete (not bound)
In the docs I found online, people try to fix the backspace, but not the delete key. I've tried numerous things, but nothing seems to affect this behavior.