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$"
link|improve this question
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 Dec 17 '11 at 6:16
feedback

1 Answer

up vote 1 down vote accepted

I think you are trying to find

:set cpo+=$
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.