You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Typing db in normal mode behaves differently from vim.
Here I'm surrounding a character with underscores to indicate the location of the cursor. (E.g. x_y_z represents the cursor on character y in string xyz.) These examples use the string abc 123 and start with the cursor on 1:
In vscodevim (v0.0.28), typing db does this:
abc _1_23 -> a_2_3
In vim:
abc _1_23 -> _1_23
The text was updated successfully, but these errors were encountered:
Typing
db
in normal mode behaves differently from vim.Here I'm surrounding a character with underscores to indicate the location of the cursor. (E.g.
x_y_z
represents the cursor on charactery
in stringxyz
.) These examples use the stringabc 123
and start with the cursor on1
:In vscodevim (v0.0.28), typing db does this:
abc _1_23
->a_2_3
In vim:
abc _1_23
->_1_23
The text was updated successfully, but these errors were encountered: