Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Vim, when I hit the backspace key in the insert mode, it leaves ^? character and does not delete the character it is suppose to delete.

I have the following in my .vimrc

syntax on
set number
set expandtab
set incsearch
set nocompatible
set backspace=indent,eol,start
fixdel

This happens in the command mode too. When I wrongly type W instead of w to save, I press backspace key and it gives me the following:

:W^?

Any idea on whats wrong and how to fix it?!

UPDATE: before posting this question to SO, I have done a basic google search and tried all the suggestion from the first page of search result but unsuccessful.

@strcat I'm using vim version 7.0.237, KDE console 1.6.4, Linux 2.6.18 x86_64 machine.

@graywh w.r.t cat -v, for delete, I get ^[[3~ and for backspace, I get ^?.

The output of stty -a is as follows

speed 38400 baud; rows 38; columns 194; line = 0;
intr = ^C; quit = ^\; erase = ^H; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W; lnext = ^V; flush = ^O;
min = 1; time = 0;
-parenb -parodd cs8 -hupcl -cstopb cread -clocal -crtscts -cdtrdsr
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl -ixon -ixoff -iuclc -ixany -imaxbel iutf8
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt echoctl echoke
share|improve this question
3  
which terminal/OS do you use? – strcat Mar 14 '12 at 21:28
In cat -v, what is printed when you hit Delete and Backspaces keys? What is your output from stty -a? – graywh Mar 14 '12 at 21:42
Totally off-topic here, might be a good question for superuser or unix.stackexchange – Ben Voigt Apr 17 '12 at 19:44
@strcat I'm using vim version 7.0.237, KDE console 1.6.4, Linux 2.6.18 x86_64 machine. – Sangeeth Saravanaraj Apr 18 '12 at 5:51

3 Answers

up vote 16 down vote accepted
+50

^? is the delete character; the backspace character is ^H. Only one of these is recognized by your terminal as "erase", and this is determined by the terminal settings, stty. (bash and other shells understand this as a problem and do special things to recognize both)

If your terminal emulator (ssh, putty, xterm, whatever) disagrees with your terminal settings, then you see this behavior. Usually it's right by default, but very often people will put stty commands in their .bashrc which breaks things.

You probably have something like stty erase ^H in your bashrc. If you do, get rid of it, or change your terminal settings to have backspace send ^H instead of DEL (^?)

You can also fix this with vim mappings, but that's ignoring the basic problem.

share|improve this answer
You are correct. It is the stty in my bashrc file which screwed things up. Thanks for clarifying. – Sangeeth Saravanaraj Apr 18 '12 at 5:59

Please check the link bellow to help debug your problem:

http://vim.wikia.com/wiki/Backspace_and_delete_problems

EDIT:

i found what it seems like a similar problem with the one described by you:

http://lj4newbies.blogspot.com/2007/05/backspace-and-delete-keys-problem-in.html

share|improve this answer
Sorry I tried that but didn't work! – Sangeeth Saravanaraj Mar 14 '12 at 12:01
i've updated my post with some new hints, please revise them – Bogdan Emil Mariesan Mar 14 '12 at 12:05

Try ctrl+del/ctrl+backspace or alt+del/alt+backspace, I cant remember which, but I think it will do the trick for you.

If that doesn't work try shift+backspace/del. I've ran into this problem before, there is a combo key that you can press to send the correct char code to do your deleting.

share|improve this answer
Ooh, didn't know about that <kbd> trick. – LarsH Mar 15 at 1:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.