Suppose I have a code,
struct NodeVector { vector<bool_node*> *vec; };
I want to replace two things, for example:
:'<,'>s/NodeVector/MyClass/g | s/bool_node/MyEltClass/g
but it starts only the first search and then says: "pattern not found: bool_node ". How can I achieve this result? (plugin answers are ok).
struct MyClass { vector<MyEltClass*> *vec; };
source share