summaryrefslogtreecommitdiff
path: root/src/gui/gui-key.h
AgeCommit message (Collapse)Author
2015-01-01core: update copyright datesSébastien Helleu
2014-03-27core: fix crash on /reload weechatSebastien Helleu
The problem was introduced in commit eef3b570752b974b87f5b189c89813f400f55a6e which was storing split commands inside keys themselves (for optimization). This causes a problem when weechat.conf is reloaded, because all keys are then deleted and created again, which removes the array of commands which is currently used. And then it leads to a crash of WeeChat. This commit reverts this behavior and the key commands are split when they are executed.
2014-03-19core: fix use of reserved C identifiers in headers (closes #31)Sebastien Helleu
2014-02-10core: split key command when the key is created (improve speed when ↵Sebastien Helleu
executing commands of a key)
2014-01-01core: update copyright datesSebastien Helleu
2013-07-15core: add option weechat.look.key_bind_safeSebastien Helleu
2013-01-01core: update copyright datesSebastien Helleu
2012-04-14core: optimize load of keys (save score of keys to sort them faster)Sebastien Helleu
2012-03-24core: convert tabs to spaces in text pasted (bug #25028)Sebastien Helleu
2012-03-09core: improve and fix bugs on standard paste and bracketed pasteSebastien Helleu
Changes: - wait control sequence for end of bracketed paste (and only after, check if we should ask confirmation to user) - add option weechat.look.paste_bracketed_timer_delay to force the end of bracketed paste if the control sequence for end of bracketed paste was not received in time - in bracketed paste mode, with paste_max_lines=1, do not ask confirmation for one line (ask for one line only if paste_max_lines=0) - fix bugs with mintty: bracketed paste should be ok every time (even if some codes are sometimes partially received, WeeChat will now handle that properly); the standard paste often fails (due to bug in mintty, which sends paste very slowly to remote app); so the bracketed paste mode is highly recommended with mintty - after paste in bracketed paste mode, the undo key (ctrl+"_" by default) will undo whole paste, not chars one by one
2012-03-04core: add support of terminal "bracketed paste mode" (task #11316)Sebastien Helleu
2012-01-08core: update copyright datesSebastien Helleu
2011-08-20core: add functions "key_bind" and "key_unbind" in plugin APISebastien Helleu
2011-08-15core: allow a second area for keys in context "mouse" (for drag & drop ↵Sebastien Helleu
between two areas)
2011-08-08core: add optional buffer name for area "chat" in keys of mouse contextSebastien Helleu
2011-08-03core: fix crash with "/input grab_mouse"Sebastien Helleu
2011-07-28core: improve mouse support: process utf-8 codes, add option ↵Sebastien Helleu
weechat.look.mouse_timer_delay, remove key meta2-M, fix problem with iso chars when grabbing mouse codes
2011-07-26core: add mouse support (task #5435), free cursor movement, hook_focus, fix ↵Sebastien Helleu
bugs with key "^" (bug #32072, bug #21381), fix bugs with bar windows, completion and /buffer New features and bugs fixed: - mouse support: new command /mouse, new option weechat.look.mouse, new key context "mouse" - free movement of cursor: new command /cursor, new key context "cursor" - new hook_focus (used by cursor and mouse) - info "cursor_mode" - bugs fixed with key "^" - allow plugin name in /buffer name - fix bugs with bar windows: do not create bar windows for hidden bars - fix completion bug when two words for completion are equal but with different case - automatic scroll direction in /bar scroll (x/y is now optional)
2011-07-05core: add context "search" for keys (to define keys used during search in ↵Sebastien Helleu
buffer with ctrl+"r")