Is there any way to configure the following vim commands to be executed that delete, yank or change in regex?
d/something/
y/something/
c/something/
Currently, when you press the "/" key, it pops up the search bar and is no longer in the context of the delete, yank or change command. Is it possible to disable / open the search box and allow the commands above?
As an example of how the delete command should behave in vim:
This line of text:
I want something done here
When entering:
d/something/
in command mode with the cursor at the beginning of the line, he should delete everything up to the word something and produce this:
something done here
source
share