rkb
rkb

Reputation: 11231

Setting backspace in vim

I am using mac so technically I want to set the Delete to act as a Backspace.

when I use

:fixdel

It started acting as a Delete key, but I want to use it as Backspace instead.

Upvotes: 1

Views: 664

Answers (1)

Gregg
Gregg

Reputation: 3316

Try adding the following to your vimrc:

set backspace=indent,eol,start

Upvotes: 1

Related Questions