diff options
author | Tom Feist <shabble@metavore.org> | 2010-09-27 19:54:54 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2010-09-27 19:54:54 +0000 |
commit | 5ff20652edcd83c6da40368ec7f6865d69d9630e (patch) | |
tree | c1863f9c4adb98131491e9deee5fa63a39072110 /vim-mode/vim_mode.pl | |
parent | changed commit_line back to using signal emit to make it tidier. (diff) | |
download | irssi-scripts-5ff20652edcd83c6da40368ec7f6865d69d9630e.tar.gz irssi-scripts-5ff20652edcd83c6da40368ec7f6865d69d9630e.zip |
bugfix, accidental duplication of 'send command' in emits in commit_line
Diffstat (limited to 'vim-mode/vim_mode.pl')
-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 2e2ca4a..dfc9bb2 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -1111,7 +1111,7 @@ sub _commit_line { if ($line =~ /^[\Q$cmdchars\E]/) { Irssi::signal_emit 'send command', $line, @context; } else { - Irssi::signal_emit 'send command', $line, @context; + Irssi::signal_emit 'send text', $line, @context; } } |