From: martin f. krafft Date: Wed, 3 Nov 2021 01:01:29 +0000 (+0100) Subject: Collect to-dos in one place X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=4b5fd53b691b7b9b38dbb98293721c97a5a3ee84;p=irssi-scripts.irssi.org.git Collect to-dos in one place Signed-off-by: martin f. krafft --- diff --git a/scripts/chankeys.pl b/scripts/chankeys.pl index 716d22c..9023c39 100644 --- a/scripts/chankeys.pl +++ b/scripts/chankeys.pl @@ -36,6 +36,9 @@ # just use /query instead of /window goto # * When adding a keymap from /chankey add, if the keymap is already assigned # to another channel, we need to handle this better +# * check_for_existing_bind really hurts and causes a bit of lag in Irssi that +# it doesn't recover from for a few seconds after load. Better to read /bind +# output once into a hash and use that. # use strict; use warnings; @@ -183,10 +186,6 @@ sub check_for_existing_bind { ## KEYMAP HANDLERS ############################################################# -# TODO check_for_existing_bind really hurts and causes a bit of lag in Irssi -# that it doesn't recover from for a few seconds after load. Better to read -# /bind output once into a hash and use that. - sub create_keymapping { my ($keys, $name, $chatnet) = @_; my $cmd = 'command ' . get_go_command($name, $chatnet);