2

When I press a backspace in the ConqueTerm running gdb then it deletes a whole word instead of a single character. How can I make the backspace delete only a single character?

hasan
  • 638
  • 4
  • 14

2 Answers2

2

More digging revealed the problem. I had this line in .inputrc:

"\b": backward-kill-word

Interesting thing is that it did not make any problems in rxvt.

hasan
  • 638
  • 4
  • 14
0

My .inputrc contained a different line with the same effect:

"\C-?":"\C-W"
Nicholas
  • 628
  • 1
  • 11
  • 14