I would like to delete some prefix from all words in document using VSCodeVim plugin. For example:
var someVarOne, someVarTwo, someVarThree;
delete prefix 'some' and get:
var VarOne, VarTwo, VarThree;
Thanks in advance!
Since the substitution methods have already been mentioned, you could try this simple method: