Sublime vintage mode (vim) delete, yank, change to regex

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
+5
source share
1 answer

You cannot, d/fooVi (m) is still located - only.

Sublime Text doesn't work like this: it's a bad replacement for Vim.

+1
source

All Articles