I have added set term=xterm
to my vimrc
to be able to use 256-color vim schemes in terminal, but it comes at a price (at least for me). It also replaces (sort of) the BackSpace
with Delete
(i.e. BackSpace
starts to delete forward just like Delete
does) in insert mode and makes it "BackSpace" instead of moving left (or h
) in normal mode. I have nothing against Ctrl-H as a way "to Backspace", but I simply don't want to have two delete buttons and ability "to BackSpace" (delete backward) in normal mode.
How can I reverse that change while retaining the setting I need?
PS I've read :h CTRL-h
and a bit of :h xterm
, but I couldn't find the solution.