1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 07:46:38 +02:00

core: set option weechat.look.mouse when mouse state is changed with command /mouse

This commit is contained in:
Sebastien Helleu
2011-12-25 21:22:33 +01:00
parent 583f4d5151
commit 3194a9b8e4
2 changed files with 5 additions and 1 deletions
+3 -1
View File
@@ -1,12 +1,14 @@
WeeChat ChangeLog
=================
Sébastien Helleu <flashcode@flashtux.org>
v0.3.7-dev, 2011-12-19
v0.3.7-dev, 2011-12-25
Version 0.3.7 (under dev!)
--------------------------
* core: set option weechat.look.mouse when mouse state is changed with command
/mouse
* core: add type "hashtable" for hdata
* core: add signal "buffer_line_added"
* core: add default keys "meta2-1;5D" and "meta2-1;5C" (ctrl+left/right) for
+2
View File
@@ -90,6 +90,7 @@ gui_mouse_enable ()
{
gui_mouse_enabled = 1;
fprintf (stderr, "\033[?1005h\033[?1000h\033[?1002h");
config_file_option_set (config_look_mouse, "1", 1);
}
/*
@@ -101,6 +102,7 @@ gui_mouse_disable ()
{
gui_mouse_enabled = 0;
fprintf (stderr, "\033[?1002l\033[?1000l\033[?1005l");
config_file_option_set (config_look_mouse, "0", 1);
}
/*