diff options
| author | Simon Ruderich <simon@ruderich.org> | 2010-09-29 21:37:35 +0000 | 
|---|---|---|
| committer | Simon Ruderich <simon@ruderich.org> | 2010-09-29 21:37:35 +0000 | 
| commit | 20c5a2b31de167f4491e557b2ff3e10061ab61d1 (patch) | |
| tree | f9ebf6f0c438557ab9735ebc50b3269912ea8b65 /vim-mode | |
| parent | vim_mode: Fix W with operators. (diff) | |
| download | irssi-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.pl | 2 | 
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 {  | 
