diff options
| -rw-r--r-- | vim-mode/vim_mode.pl | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index 0149844..50792dd 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -936,7 +936,7 @@ sub cmd_movement_a {      # Move after current character. Can't use cmd_movement_l() because we need      # to mover after last character at the end of the line.      my $length = _input_len(); -    $pos += $count; +    $pos += 1;      $pos = $length if $pos > $length;      if (!$repeat) { | 
