diff options
| author | Oliver Kiddle <opk@zsh.org> | 2014-10-23 22:12:06 +0200 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2014-10-23 22:12:06 +0200 |
| commit | 2fe4bfb100125ecd63d6f54a7cb15f494bc4df1c (patch) | |
| tree | be2fa7080c1aa558a40c2d1fe3ede4b530772837 /Src | |
| parent | 33518: add support for "_ vi buffer and arguments to vi-set-buffer from a zle... (diff) | |
| download | zsh-2fe4bfb100125ecd63d6f54a7cb15f494bc4df1c.tar zsh-2fe4bfb100125ecd63d6f54a7cb15f494bc4df1c.tar.gz zsh-2fe4bfb100125ecd63d6f54a7cb15f494bc4df1c.tar.bz2 zsh-2fe4bfb100125ecd63d6f54a7cb15f494bc4df1c.tar.lz zsh-2fe4bfb100125ecd63d6f54a7cb15f494bc4df1c.tar.xz zsh-2fe4bfb100125ecd63d6f54a7cb15f494bc4df1c.tar.zst zsh-2fe4bfb100125ecd63d6f54a7cb15f494bc4df1c.zip | |
33519: last character in the buffer can be cut, changed or yanked using vi-forward-char
Diffstat (limited to 'Src')
| -rw-r--r-- | Src/Zle/zle_move.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/zle_move.c b/Src/Zle/zle_move.c index 7312b3f20..35e419369 100644 --- a/Src/Zle/zle_move.c +++ b/Src/Zle/zle_move.c @@ -599,7 +599,7 @@ vimatchbracket(UNUSED(char **args)) int viforwardchar(char **args) { - int lim = findeol() - invicmdmode(); + int lim = findeol() - invicmdmode() + virangeflag; int n = zmult; if (n < 0) { |
