From 2c251cd285cc33e5a94cd4cd84f81f3f91c407cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Fri, 8 Sep 2023 10:42:00 +0200 Subject: script: fix up/down keys on /script buffer Regression was introduced in commit 817d1eaf8e0be700bf9b61dcbaf9db7ab507d3af. --- src/plugins/script/script-buffer.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/plugins/script/script-buffer.c b/src/plugins/script/script-buffer.c index 08f45a02f..801f17b6c 100644 --- a/src/plugins/script/script-buffer.c +++ b/src/plugins/script/script-buffer.c @@ -1094,6 +1094,8 @@ void script_buffer_set_keys (struct t_hashtable *hashtable) { char *keys[][2] = { + { "up", "up" }, + { "down", "down" }, { "meta-A", "toggleautoload" }, { "meta-l", "load" }, { "meta-u", "unload" }, @@ -1108,11 +1110,11 @@ script_buffer_set_keys (struct t_hashtable *hashtable) char str_key[64], str_command[64]; int i; - weechat_buffer_set (script_buffer, "key_bind_up", "/script up"); - weechat_buffer_set (script_buffer, "key_bind_down", "/script down"); for (i = 0; keys[i][0]; i++) { - if (weechat_config_boolean (script_config_look_use_keys)) + if (weechat_config_boolean (script_config_look_use_keys) + || (strcmp (keys[i][1], "up") == 0) + || (strcmp (keys[i][1], "down") == 0)) { snprintf (str_key, sizeof (str_key), "key_bind_%s", keys[i][0]); snprintf (str_command, sizeof (str_command), "/script %s", keys[i][1]); -- cgit v1.2.3