diff options
author | Tom Feist <shabble@cowu.be> | 2010-09-25 23:16:07 +0000 |
---|---|---|
committer | Tom Feist <shabble@cowu.be> | 2010-09-25 23:16:07 +0000 |
commit | 0e8773c66b5736bcb25aeddd7bc47ba8fce29872 (patch) | |
tree | f8bdb19a3bb9ad37fc3345c41022220fd834774f /vim-mode | |
parent | changed cmdchars to use settings rather than parse_special (diff) | |
download | irssi-scripts-0e8773c66b5736bcb25aeddd7bc47ba8fce29872.tar.gz irssi-scripts-0e8773c66b5736bcb25aeddd7bc47ba8fce29872.zip |
belatedly realised that the setting is not "cmdkeys". Ooops.
Diffstat (limited to '')
-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 25b02b8..d970e9e 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -508,7 +508,7 @@ sub handle_command { # Enter key sends the current input line in command mode as well. } elsif ($key == 10) { my $input = _input(); - my $cmdchars = Irssi::settings_get_str('cmdkeys'); + my $cmdchars = Irssi::settings_get_str('cmdchars'); my $signal; if ($input =~ /^[\Q$cmdchars\E]/) { |