aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2010-11-08 20:00:37 +0000
committerTom Feist <shabble@metavore.org>2010-11-08 20:00:37 +0000
commitbc218fc4477c3e334a046f318c0dc9d84d5dca2f (patch)
tree419fd57c28153511a98aa2e9c0c40d494dc30231
parentfix for prompt_ifno users upgrading to uberprompt without restart (hopefully) (diff)
parentvim-mode: Fix s not using count. (diff)
downloadirssi-scripts-bc218fc4477c3e334a046f318c0dc9d84d5dca2f.tar.gz
irssi-scripts-bc218fc4477c3e334a046f318c0dc9d84d5dca2f.zip
Merge remote branch 'origin/dev'
Diffstat (limited to '')
-rw-r--r--vim-mode/vim_mode.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl
index 5a51e24..3ed29ae 100644
--- a/vim-mode/vim_mode.pl
+++ b/vim-mode/vim_mode.pl
@@ -1336,7 +1336,7 @@ sub cmd_s {
my ($count, $pos, $repeat) = @_;
$operator = $commands->{c};
- return (undef, $pos + 1);
+ return (undef, $pos + $count);
}
sub cmd_S {