Kyle’s Reference Links |
||
Contents
External Links
Friendly Links
|
The ProblemPressing the backspace key doesn't work in all terminal applications. Often, instead of deleting something, a ^? or ^H is printed. The Temporary FixMake sure that your Xterm is sending the right thing. You can switch between the two correct values by control-clicking on your xterm and selecting "Backarrow Key (BS/DEL)". The Best SolutionAdd the following to your .Xdefaults file: xterm*ttyModes: erase ^? xterm*VT100.Translations: \ #override <Key>BackSpace: string(0x7f) \n\ <Key>Delete: string(0x1b) string("[3~")You MAY also want to add xterm*backarrowKey: falsebut it's probably unnecessary. |
|