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
According to the vim documentation, using v, V, or CTRL-V after an operator but before the motion command changes the behavior of the motion command, e.g.:
v When used after an operator, before the motion command: Force
the operator to work characterwise, also when the motion is
linewise. If the motion was linewise, it will become
|exclusive|.
If the motion already was characterwise, toggle
inclusive/exclusive. This can be used to make an exclusive
motion inclusive and an inclusive motion exclusive.
However, when in normal mode (cursor is on last 's') and pressing dvb, it deletes the last character on pressing the v and moves the cursor back to beginning of the package name when hitting the final b:
Like the vim doc says, hitting v after the command d should switch from exclusive motion to inclusive motion and thus delete the whole word, including the character under the cursor (you can see it working using vim editor"
General information
Basic examination
Problem description
According to the vim documentation, using
v
,V
, orCTRL
-V
after an operator but before the motion command changes the behavior of the motion command, e.g.:However, when in normal mode (cursor is on last 's') and pressing
dvb
, it deletes the last character on pressing thev
and moves the cursor back to beginning of the package name when hitting the finalb
:Reproduction steps
dvb
in sequenceExpected behavior
Like the vim doc says, hitting
v
after the commandd
should switch from exclusive motion to inclusive motion and thus delete the whole word, including the character under the cursor (you can see it working using vim editor"The text was updated successfully, but these errors were encountered: