zsh-vi-mode
zsh-vi-mode copied to clipboard
[count]cl or [count]s only affecting a single char despite [count]
General information
- Terminal program:
tmux 3.4
, viaalacritty 0.13.2 (bb8ea18e)
- Operating system:
Arch up-to-date as of today
- ZSH framework:
oh-my-posh 19.25.0
- ZSH version:
zsh 5.9 (x86_64-pc-linux-gnu)
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
cl
and s
doesn't work with a count.
Reproduction steps
- Enter
fd "hello world"
- Press
Esc
to go back to normal mode - Press
0
to get to the start of the string - Type
2cl
- Expecting to have
| "hello world"
but we actually have|d "hello world"
(Note that I used|
to indicate cursor position).