aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode/vim_mode.pl
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2010-09-27 19:54:54 +0000
committerTom Feist <shabble@metavore.org>2010-09-27 19:54:54 +0000
commit5ff20652edcd83c6da40368ec7f6865d69d9630e (patch)
treec1863f9c4adb98131491e9deee5fa63a39072110 /vim-mode/vim_mode.pl
parentchanged commit_line back to using signal emit to make it tidier. (diff)
downloadirssi-scripts-5ff20652edcd83c6da40368ec7f6865d69d9630e.tar.gz
irssi-scripts-5ff20652edcd83c6da40368ec7f6865d69d9630e.zip
bugfix, accidental duplication of 'send command' in emits in commit_line
Diffstat (limited to '')
-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 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;
}
}