Re: search modifiers not working
I often use this technique in vim when I have some boilerplate code to write, where I might half-complete an api call (i.e. 'foo->get' ), place it many times, and then I want to search to each line, go to the end of the get, and complete it with the context sensitive ending (e.g. Name() )
But the /e modifier doesn' t work on search. So
/get/e
just ignores the /e
is there some way to turn this functionality on?
Afton.