diff options
author | Simon Ruderich <simon@ruderich.org> | 2010-10-07 16:44:08 +0000 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2010-10-07 16:44:08 +0000 |
commit | 8b9fa9038758291517a1ced01ebbe45bbd957821 (patch) | |
tree | b04ec33605da9b1bf89501a006eef6cdf166480c /vim-mode | |
parent | vim_mode: Add internal support to bind ex-mode commands in command mode. (diff) | |
download | irssi-scripts-8b9fa9038758291517a1ced01ebbe45bbd957821.tar.gz irssi-scripts-8b9fa9038758291517a1ced01ebbe45bbd957821.zip |
vim_mode: Fix ex-mode broken in last commit.
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 0daff6d..f6ba516 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -1384,7 +1384,7 @@ sub cmd_ex_command { return _warn("Ex-mode $1 doesn't exist!"); } - $commands_ex->{$1}($arg_str); + $commands_ex->{$1}->{func}($arg_str); } sub ex_substitute { |