aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode/vim_mode.pl
diff options
context:
space:
mode:
authorTom Feist <shabble@cowu.be>2010-09-25 23:16:07 +0000
committerTom Feist <shabble@cowu.be>2010-09-25 23:16:07 +0000
commit0e8773c66b5736bcb25aeddd7bc47ba8fce29872 (patch)
treef8bdb19a3bb9ad37fc3345c41022220fd834774f /vim-mode/vim_mode.pl
parentchanged cmdchars to use settings rather than parse_special (diff)
downloadirssi-scripts-0e8773c66b5736bcb25aeddd7bc47ba8fce29872.tar.gz
irssi-scripts-0e8773c66b5736bcb25aeddd7bc47ba8fce29872.zip
belatedly realised that the setting is not "cmdkeys". Ooops.
Diffstat (limited to 'vim-mode/vim_mode.pl')
-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 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]/) {