1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-08 10:43:13 +02:00

core: fix bind of keys in cursor/mouse context when key starts with "@" (remove the warning about unsafe key)

This commit is contained in:
Sebastien Helleu
2013-10-26 12:22:22 +02:00
parent f3be467dd0
commit 0069dbb5f1
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -1,7 +1,7 @@
WeeChat ChangeLog
=================
Sébastien Helleu <flashcode@flashtux.org>
v0.4.3-dev, 2013-10-24
v0.4.3-dev, 2013-10-26
This document lists all changes for each version.
@@ -14,6 +14,8 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
Version 0.4.3 (under dev!)
--------------------------
* core: fix bind of keys in cursor/mouse context when key starts with "@"
(remove the warning about unsafe key)
* core: fix truncated prefix when filters are toggled (bug #40204)
* core: add options to customize default text search in buffers:
weechat.look.buffer_search_{case_sensitive|force_default|regex|where}
+1 -1
View File
@@ -3029,7 +3029,7 @@ COMMAND_CALLBACK(key)
/* bind new key */
if (CONFIG_BOOLEAN(config_look_key_bind_safe)
&& !gui_key_is_safe (GUI_KEY_CONTEXT_DEFAULT, argv[3]))
&& !gui_key_is_safe (context, argv[3]))
{
gui_chat_printf (NULL,
_("%sError: it is not safe to bind key \"%s\" because "