diff options
author | Tom Feist <shabble@cowu.be> | 2010-09-25 23:13:25 +0000 |
---|---|---|
committer | Tom Feist <shabble@cowu.be> | 2010-09-25 23:13:25 +0000 |
commit | 195178fdd709ae58add3183829a90f8542068031 (patch) | |
tree | 3a1453116d31c2194cc3981e6a0afb52077725ad /vim-mode | |
parent | Merge branch 'dev' of github.com:shabble/shab-irssi-scripts (diff) | |
download | irssi-scripts-195178fdd709ae58add3183829a90f8542068031.tar.gz irssi-scripts-195178fdd709ae58add3183829a90f8542068031.zip |
changed cmdchars to use settings rather than parse_special
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 e89e4d3..25b02b8 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::parse_special('$K'); + my $cmdchars = Irssi::settings_get_str('cmdkeys'); my $signal; if ($input =~ /^[\Q$cmdchars\E]/) { |