Hi all , i have a weird problem . Bellow is my .vimrc

  1 set number
  2 set lbr
  3 map ; :
  4
  5 set hlsearch
  6 set incsearch
  7 set laststatus=2
  8 set showcmd
  9 set tabstop=4
 10 set expandtab
 11 syntax on
 12 set ruler
 13 set number
 14 set history=10000
 15 set expandtab
 16 set smarttab
 17 set smartindent
 18 set nocompatible
 19 :filetype plugin on
 20 set tags+=/home/abhay/.vim/tags/python.ctags
 21
 22 " Python stuff
 23 autocmd Filetype python let python_highlight_all = 1
 24 autocmd Filetype python let python_slow_sync = 1
 25 autocmd Filetype python set expandtab shiftwidth=4 softtabstop=4
 26
 27 map <F5> :wq!<CR>
 28 map <silent><A-Right> :tabnext<CR>
 29 map <silent><A-Left> :tabprevious<CR>
 30
 31 set backspace=indent,eol,start
 32

As you can see, i have set the backspace to delete the characters left of
the cursor.  However i am not able to achieve it. Each time (insert mode) i
hit the backspace button, it gives me " ^? ". The remaining customizations
are working fine.

I am using Vim 7.2. on a Linux ( Fedora 11 ) machine.

Can someone help me with this ?

Thanks
Abhay

-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to