vimrc: Fixed backspace on badly behaved tcsh/vim combos (especially csil)

This commit is contained in:
Adrian Kreher 2008-11-15 01:22:37 -06:00
parent 812e838126
commit 2e78d040e7

7
vimrc
View file

@ -278,6 +278,13 @@ imap <silent> <F12> <C-O>:silent set number!<CR>
" Don't force column 0 for #
inoremap # X<BS>#
" Fix broken shit backspace on csil machines
" in tcsh with badly compiled vims
map <C-h> <BS>
map <C-?> <BS>
map! <C-h> <BS>
map! <C-?> <BS>
" Python specific stuff
if has('eval')
let python_highlight_all = 1