-
-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent Escape Behavior in ZVM Visual Mode #257
Comments
i have the same problem |
I've had the same issue for months at this point, only just realized it was caused by this specific behavior. |
@johnpyp Well you found the right lines of code but uncommenting it is no solution. It is valid vim behavior to enter operator pending mode pressing |
Yeah, I just did that as a temporary patch. I tried to debug the issue but couldn't track down where the escape handling should actually happen... not familiar enough with the code / complex zsh. |
General information
Basic examination
Problem description
Hello,
I've encountered a recurrent issue in ZVM where unintentional entry into visual mode leads to a challenging exit process. Often, by habit, I press
i
aiming to switch to insert mode, but this action instead initiates the operator pending mode within visual mode. This is an expected behavior of the mode. However, the problem arises when attempting to exit from this state. Repeatedly pressingESC
does not lead to an exit from the operator pending mode. It necessitates an additional action, thew
key to select a word, beforeESC
successfully exits visual mode.Reproduction steps
ESC
v
i
ora
ESC
Expected behavior
Upon completion of Step 4, the expectation is to exit operator pending mode directly with the
ESC
key.The text was updated successfully, but these errors were encountered: