summaryrefslogtreecommitdiff
path: root/src/gui/curses/gui-curses-keyboard.c
AgeCommit message (Collapse)Author
2008-04-27New default keys for scroll_top/bottomSebastien Helleu
2008-04-18Use of /window command for some key bindings with actions on current window ↵Sebastien Helleu
(like scroll, ..)
2008-04-15Added keys by buffer (useful for buffers with free content that need own keys)Sebastien Helleu
These keys can be set thru API function "buffer_set", for example: weechat_buffer_set(my_buffer, "key_bind_meta2-A", "/mycommand up"); weechat_buffer_set(my_buffer, "key_bind_meta2-B", "/mycommand down"); weechat_buffer_set(my_buffer, "key_unbind_meta2-B", ""); weechat_buffer_set(my_buffer, "key_unbind_*", ""); These keys are volatile and not saved in any config file. So they must be set when buffer is open.
2008-04-03Fixed compilation problems when gnutls dev lib is not foundSebastien Helleu
2008-03-22Added tags for lines and custom filtering by tags or regex (task #7674), ↵Sebastien Helleu
fixed many memory leaks
2008-02-22New "irc/debug" buffer (replaces old IRC raw buffer), improved status bar ↵Sebastien Helleu
display, fixed nick in input for IRC buffers The "irc/debug" buffer is displayed when IRC debug is enabled (with "/debug irc" thru debug plugin). If the buffer is closed, it is reopen when new messages are written, until debug is disabled by user (with "/debug irc").
2008-01-02Update of year in some copyrightsSebastien Helleu
2008-01-01Added group support for nicklist, fixed some bugs in plugins API and IRC pluginSebastien Helleu
Added group support for nicklist (with subgroups). Partial changes in IRC protocol functions (new arguments with argv and argv_eol). Fixed some bugs: - nicklist in plugins API - problem in main loop with select() when SIGWINCH is received (terminal resize) - bug in string explode function - bug in infobar countdown.
2007-12-17New backlog option in logger plugin, added variable names in .h files, ↵Sebastien Helleu
replaced "void *" pointers by structures
2007-12-01New config functions, almost entirely rewritten from scratchSebastien Helleu
2007-11-08Added default keys for alt-left/right for konsoleSebastien Helleu
2007-10-31Renamed many sources and functions in src/gui, improved display of messages ↵Sebastien Helleu
in buffer (faster and using less memory)
2007-08-18Code cleanup for paste detectionSebastien Helleu
2007-08-17Fixed problem with input of UTF-8 chars in last cvsSebastien Helleu
2007-08-17Added paste detection, new options look_paste_max_lines and ↵Sebastien Helleu
col_input_actions (task #5442)
2007-08-16Code cleanup: renamed some constants and variables (prefix added)Sebastien Helleu
2007-08-06Added key for setting unread marker on all buffers (default: ctrl-S + ↵Sebastien Helleu
ctrl-U) (task 7180)
2007-07-18Added 3 default new keys: ctrl-B (left), ctrl-F (right), ctrl-D (delete)Sebastien Helleu
2007-07-15Added key function "jump_previous_buffer" to jump to buffer previously ↵Sebastien Helleu
displayed (new key: alt-J + alt-P) (task #7085)
2007-07-12Fixed bugs with IRC color in messages, now color codes are inserted in ↵Sebastien Helleu
command line with ^Cc,^Cb,.. instead of %C,%B,.. (bug #20222, task #7060)
2007-07-02Replaced GPL 2 license by GPL 3Sebastien Helleu
2007-04-04Fixed minor refresh bug with input when searching textSebastien Helleu
2007-03-20Added case-sensitive search in buffer, display marker for each line matching ↵Sebastien Helleu
search
2007-03-16Replaced ctrl-S by ctrl-R for interactive and incremental searchSebastien Helleu
2007-03-16Added new key (ctrl-S) for interactive and incremental search in buffer ↵Sebastien Helleu
history (task #6628)
2007-02-12Added "call" option to /key command, added new key function "insert" to ↵Sebastien Helleu
insert text on command line (task #6468)
2007-01-05Changed copyright date (2006 -> 2007)Sebastien Helleu
2006-11-29Added keys (F9/F10) to scroll topic (task #6030)Sebastien Helleu
2006-11-26Fixed memleak in keyboard inputSebastien Helleu
2006-11-08Added charset plugin (WeeChat is now full UTF-8 for internal data storage), ↵Sebastien Helleu
fixed compilation problems with FreeBSD, fixed status bar display bug
2006-09-02Added some new default key bindings for existing keys (for some OS)Sebastien Helleu
2006-07-30Fixed compilation problems under IrixSebastien Helleu
2006-07-16added some panel functions, fixed refresh bugs when terminal is resized: too ↵Sebastien Helleu
many refreshs, display bug with splited windows
2006-07-01Fixed typosSebastien Helleu
2006-05-13Added new key to find previous completion (shift-tab by default)Sebastien Helleu
2006-05-07Added some panel structures and functionsSebastien Helleu