diff options
author | Simon Ruderich <simon@ruderich.org> | 2010-10-02 15:37:56 +0000 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2010-10-02 15:37:56 +0000 |
commit | 0760d31f2eef9aa6a486851a2d8cf6d9c1307845 (patch) | |
tree | 18582831e7ade478f8f9ef4efe94d3dad1126f59 /vim-mode/vim_mode.pl | |
parent | vim_mode: Movement commands return $cur_pos, $new_pos. (diff) | |
download | irssi-scripts-0760d31f2eef9aa6a486851a2d8cf6d9c1307845.tar.gz irssi-scripts-0760d31f2eef9aa6a486851a2d8cf6d9c1307845.zip |
vim_mode: Fix a with count.
Diffstat (limited to 'vim-mode/vim_mode.pl')
-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) { |