diff options
author | Simon Ruderich <simon@ruderich.org> | 2010-10-07 20:45:33 +0000 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2010-10-07 20:45:33 +0000 |
commit | b7dbdbfa1685778c1b77a991ed37db7980b3d6c9 (patch) | |
tree | 6f1368533b607b6b440e913b298f21dd7832142c /vim-mode | |
parent | vim_mode: Add warning for irssi < 0.8.13 for g and GG. (diff) | |
download | irssi-scripts-b7dbdbfa1685778c1b77a991ed37db7980b3d6c9.tar.gz irssi-scripts-b7dbdbfa1685778c1b77a991ed37db7980b3d6c9.zip |
vim_mode: Increase insert mode timeout to one second.
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 0be1f13..0c64a91 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -1674,7 +1674,7 @@ sub got_key { $input_buf_enabled = 1; push @input_buf, $key; $input_buf_timer - = Irssi::timeout_add_once(500, \&flush_input_buffer, undef); + = Irssi::timeout_add_once(1000, \&flush_input_buffer, undef); _stop(); return; |