aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode
diff options
context:
space:
mode:
authorSimon Ruderich <simon@ruderich.org>2010-09-29 21:37:35 +0000
committerSimon Ruderich <simon@ruderich.org>2010-09-29 21:37:35 +0000
commit20c5a2b31de167f4491e557b2ff3e10061ab61d1 (patch)
treef9ebf6f0c438557ab9735ebc50b3269912ea8b65 /vim-mode
parentvim_mode: Fix W with operators. (diff)
downloadirssi-scripts-20c5a2b31de167f4491e557b2ff3e10061ab61d1.tar.gz
irssi-scripts-20c5a2b31de167f4491e557b2ff3e10061ab61d1.zip
vim_mode: Fix missing argument to cmd_operator_d().
Diffstat (limited to 'vim-mode')
-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 99268a5..8e05927 100644
--- a/vim-mode/vim_mode.pl
+++ b/vim-mode/vim_mode.pl
@@ -316,7 +316,7 @@ sub cmd_redo {
sub cmd_operator_c {
my ($old_pos, $new_pos, $move, $repeat) = @_;
- cmd_operator_d($old_pos, $new_pos, $move);
+ cmd_operator_d($old_pos, $new_pos, $move, $repeat);
if (!$repeat) {
_update_mode(M_INS);
} else {