Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-01 | Remove obsolete comment | Sebastien Helleu | |
2010-06-22 | Update licenses and copyrights, add missing author names in sources | Sebastien Helleu | |
2010-04-28 | Add keys for undo/redo changes on command line (default: ctrl/alt + ↵ | Sebastien Helleu | |
underscore) (task #9483) | |||
2010-04-08 | Reformat and add comments for description of C sources | Sebastien Helleu | |
2010-03-24 | Add new options for command /key (listdefault, listdiff and reset), add ↵ | Sebastien Helleu | |
examples in /help key Note: old option "reset" for /key has been renamed to "resetall". | |||
2010-03-19 | Reformat multi-line comments | Sebastien Helleu | |
2010-02-19 | Fix "inactivity" value when no key has been pressed since WeeChat started ↵ | Sebastien Helleu | |
(bug #28930) | |||
2010-01-03 | Update copyright dates | Sebastien Helleu | |
2009-10-05 | Add option grab_key_command for /input (bound by default to alt-k) | Sebastien Helleu | |
New binding for alt-k is not automatic (for existing config), if you want to use it, you can do: /key bind meta-k /input grab_key_command | |||
2009-05-17 | Add signals "key_bind" and "key_unbind" | Sebastien Helleu | |
2009-05-16 | Add infolist "key" with key bindings | Sebastien Helleu | |
2009-04-24 | Fix typo: splited/splitted -> split | Sebastien Helleu | |
2009-04-11 | Use case sensitive comparison for key codes (bug #26145) | Sebastien Helleu | |
2009-04-07 | Some improvements on key bindings | Sebastien Helleu | |
List of changes: - do not automatically create default keys if they do not exist, when reading weechat.conf (let user do that if needed) - add "/key missing": add missing keys using default keys (do not update or remove user keys), - key "meta-s" moved from irc/jabber plugins to core - improved output of /key (display number of keys) | |||
2009-03-21 | Add new modifier "input_text_content" | Sebastien Helleu | |
2009-03-18 | Remove some messages during startup about scripts and plugins loaded | Sebastien Helleu | |
It is still possible to see messages by changing debug level for "core" or plugins (perl, python, ruby, lua, tcl). | |||
2009-02-23 | Test return code of some malloc/strdup | Sebastien Helleu | |
2009-01-03 | Update copyright dates | Sebastien Helleu | |
2008-11-04 | Fix bug with pointer conversions on 64 bits architecture | Sebastien Helleu | |
2008-10-12 | Remove old title/nicklist/status/input, use of new bars | Sebastien Helleu | |
2008-10-10 | Add 2 new default bar items (input_paste and input_search), used by default ↵ | Sebastien Helleu | |
input bar | |||
2008-06-27 | Add input bar item, add "hidden" flag for bars, fix some display bugs with bars | Sebastien Helleu | |
2008-06-18 | Add new options for completion, optional stop instead of cycling with words ↵ | Sebastien Helleu | |
found | |||
2008-06-03 | Add "const" keyword for some "char *" function arguments (core and plugins API) | Sebastien Helleu | |
2008-04-29 | Removed key functions (replaced by /input command) | Sebastien Helleu | |
2008-04-28 | Fixed infinite loop when closing terminal without using /quit command (bug ↵ | Sebastien Helleu | |
#23078) | |||
2008-04-18 | Replaced /builtin command by /command, and can now be used to launch ↵ | Sebastien Helleu | |
commands with same name from different plugins | |||
2008-04-18 | Use of /window command for some key bindings with actions on current window ↵ | Sebastien Helleu | |
(like scroll, ..) | |||
2008-04-15 | Added 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-03-23 | Removed sizeof(char) and useless type casts from void* to another pointer ↵ | Sebastien Helleu | |
type (patch from Leonid Evdokimov) | |||
2008-03-22 | Added tags for lines and custom filtering by tags or regex (task #7674), ↵ | Sebastien Helleu | |
fixed many memory leaks | |||
2008-02-22 | New "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-02-04 | Removed typedef for keyboard structures in gui-keyboard.h | Sebastien Helleu | |
2008-02-02 | Use of sizeof(char) in all malloc/realloc for strings | Sebastien Helleu | |
2008-01-24 | Add of "modifier" hook, migration of charset plugin to new API, SIGHUP ↵ | Sebastien Helleu | |
signal catched (reload all config files), better config files reloading | |||
2008-01-02 | Update of year in some copyrights | Sebastien Helleu | |
2007-12-17 | New backlog option in logger plugin, added variable names in .h files, ↵ | Sebastien Helleu | |
replaced "void *" pointers by structures | |||
2007-12-14 | Improved main loop (less CPU usage), better precision for timers, use of one ↵ | Sebastien Helleu | |
list by hook type (for fast search in hooks) | |||
2007-12-07 | Many changes in IRC plugin and plugins API | Sebastien Helleu | |
2007-12-04 | Removed WeeChat "command" structure, now all internal commands are hooked ↵ | Sebastien Helleu | |
when WeeChat starts | |||
2007-12-03 | Added alias plugin, added missing config file functions in plugins API | Sebastien Helleu | |
2007-11-24 | Renamed WeeChat log functions | Sebastien Helleu | |
2007-11-01 | Cleanup WeeChat error and warning messages, updated po files | Sebastien Helleu | |
2007-10-31 | Renamed many sources and functions in src/gui, improved display of messages ↵ | Sebastien Helleu | |
in buffer (faster and using less memory) | |||
2007-09-20 | Moved IRC sources from src/irc/ to src/protocols/irc/ | Sebastien Helleu | |
2007-09-02 | Fixed paste detection: does not count empty lines (bug #20953) | Sebastien Helleu | |
2007-08-17 | Added paste detection, new options look_paste_max_lines and ↵ | Sebastien Helleu | |
col_input_actions (task #5442) | |||
2007-08-16 | Code cleanup: renamed some constants and variables (prefix added) | Sebastien Helleu | |
2007-08-06 | Added key for setting unread marker on all buffers (default: ctrl-S + ↵ | Sebastien Helleu | |
ctrl-U) (task 7180) | |||
2007-07-15 | Added key function "jump_previous_buffer" to jump to buffer previously ↵ | Sebastien Helleu | |
displayed (new key: alt-J + alt-P) (task #7085) |