zsh-vi-mode
zsh-vi-mode copied to clipboard
Inconsistent Escape Behavior in ZVM Visual Mode
General information
Basic examination
- [x] I have read through the README page
- [x] I have the latest version of zsh-vi-mode
- [x] I have tested with another terminal program
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 pressing ESC
does not lead to an exit from the operator pending mode. It necessitates an additional action, the w
key to select a word, before ESC
successfully exits visual mode.
Reproduction steps
- Enter normal mode: Press
ESC
- Switch to visual mode: Press
v
- Activate operator pending mode: Press
i
ora
- Attempt to exit operator pending mode: Press
ESC
Expected behavior
Upon completion of Step 4, the expectation is to exit operator pending mode directly with the ESC
key.
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 v
-> a
or i
. The problem is that ZVM does not exit this mode when pressing ESC in this state.
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.