How to show characters when using the change "c" command

1

I know there is a vim setting that allows you to show characters when using the change command, I just can't find what it is.

Ex:

"This is a<ci"> string"

Inside the <> is where I use the ci" command to change the quotes. The setting I am talking about would change the string to something like:

"<>This is a strin$"

partkyle

Posted 2011-12-17T01:00:36.707

Reputation: 145

You can get vim to behave this way using :set compatible, but this puts it into a mode that is closer to "pure" vi, so you probably lose out on other vim enhancements. – Ash – 2011-12-17T06:16:11.817

Answers

1

I think you are trying to find

:set cpo+=$

kev

Posted 2011-12-17T01:00:36.707

Reputation: 9 972