diff options
author | Tom Feist <shabble@metavore.org> | 2011-04-28 20:31:43 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-04-28 20:31:43 +0000 |
commit | da9349ba3aed94670dd46df32cb06c5ad9a9097c (patch) | |
tree | b51500990de3ce09c4e9ed4f6ca8c6e34b0fe0e6 | |
parent | vim-mode/vim_mode: added new setting: 'esc_buf_timeout', (diff) | |
download | irssi-scripts-da9349ba3aed94670dd46df32cb06c5ad9a9097c.tar.gz irssi-scripts-da9349ba3aed94670dd46df32cb06c5ad9a9097c.zip |
vim-mode/vim_mode: fixed the stupd bugs I missed by not testing. Might possibly
work now.
-rw-r--r-- | vim-mode/vim_mode.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index 7a23d0b..f504a77 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -2704,9 +2704,9 @@ sub got_key { # NOTE: this timeout might be too low on laggy systems, but # it comes at the cost of keystroke latency for things that # contain escape sequences (arrow keys, etc) - my $esc_buf_timeout = $settings->{input_buf_timeout}; + my $esc_buf_timeout = $settings->{esc_buf_timeout}->{value}; - $esc_buf_timer + $input_buf_timer = Irssi::timeout_add_once($esc_buf_timeout, \&handle_input_buffer, undef); |