summaryrefslogtreecommitdiff
path: root/src/gui/gui-completion.c
AgeCommit message (Collapse)Author
2011-01-01Update copyright datesSebastien Helleu
2010-11-09Add function "hook_completion_get_string" in plugin APISebastien Helleu
2010-11-09Move WeeChat core completions from gui-completion.c to wee-completion.cSebastien Helleu
2010-10-31Add extra checks on some pointersSebastien Helleu
2010-06-22Update licenses and copyrights, add missing author names in sourcesSebastien Helleu
2010-04-08Reformat and add comments for description of C sourcesSebastien Helleu
2010-04-03Add option "get" for command /buffer, add completions with buffer propertiesSebastien Helleu
2010-03-24Add 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-19Reformat multi-line commentsSebastien Helleu
2010-03-03Fix completion bug for commands when input starts with two command chars ↵Sebastien Helleu
(like //)
2010-03-02Add new option weechat.look.command_chars, add functions ↵Sebastien Helleu
string_is_command_char and string_input_for_buffer in plugin and script API
2010-01-10Fix bug with completion of words with wide charsSebastien Helleu
2010-01-03Update copyright datesSebastien Helleu
2009-12-07Add missing include of limits.hSebastien Helleu
2009-12-05Remove old fifo pipes before creating new pipeSebastien Helleu
2009-11-08Remove compilation warning on 64-bit machinesSebastien Helleu
2009-11-05Add missing include of strings.h in gui-completion.cSebastien Helleu
2009-10-10Use default auto completion for arguments of unknown commandsSebastien Helleu
2009-07-06Complete command and arguments even if command line starts with double '/'Sebastien Helleu
2009-06-21Fix some memory leaks in command hook (completion templates), buffer ↵Sebastien Helleu
closing, partial completion
2009-06-21Move partial completion structure to completion structure (it is now ↵Sebastien Helleu
specific to buffer) (bug #25556)
2009-06-10Rename option weechat.completion.nick_completor to nick_completerSebastien Helleu
2009-05-09Fix completion with non-latin nicks (bug #18993)Sebastien Helleu
2009-05-08Improve completion: allow a command to use completion of another command ↵Sebastien Helleu
(used by alias plugin)
2009-04-11Add support of many templates for completion of command arguments, rename ↵Sebastien Helleu
default completion items
2009-04-03Add new option "weechat.completion.nick_add_space" (add space after nick ↵Sebastien Helleu
completion, on by default)
2009-04-03Fix bug with nick completion (too many nick completors were added to nick if ↵Sebastien Helleu
private was open with nick)
2009-04-01Fix bug with partial completionsSebastien Helleu
Option "weechat.completion.partial_completion_nick" has been renamed to "weechat.completion.partial_completion_other".
2009-04-01Add default template completion (by default: nick or IRC channel)Sebastien Helleu
2009-03-21Add new command /version, add count of /upgrade, fix bugs with command execSebastien Helleu
New (core) command /version displays version, and number of upgrades done with first start date (if # /upgrade > 0). The number of upgrades is displayed at startup (if > 0).
2009-03-20Add buffer name completion for command /filterSebastien Helleu
2009-03-08Fix memory leak in filename completionSebastien Helleu
2009-01-15Add Jabber plugin (alpha version, many Jabber features are missing)Sebastien Helleu
This commit introduces Jabber/XMPP protocol for WeeChat. It uses iksemel lib. Please note many major Jabber features are missing: - roster management (add/remove/.. buddies), - MUC, - transports. It is possible to define servers (with /jabber), connect to them (with /jconnect), disconnect (/jdisconnect) and chat with buddies (with /jchat).
2009-01-07Remove some compiler warningsSebastien Helleu
2009-01-03Update copyright datesSebastien Helleu
2009-01-02Add null values for options, new syntax for /set, reintroduce temporary IRC ↵Sebastien Helleu
server feature, improve IRC server options, new functions in API
2008-11-23Add support for more than one proxy, with proxy selection for each IRC ↵Sebastien Helleu
server (task #6859)
2008-11-15Use of const for some functions returning "char *"Sebastien Helleu
2008-11-04Fix bug with pointer conversions on 64 bits architectureSebastien Helleu
2008-10-25Add smart join/part/quit message filter in IRC plugin, add names for filtersSebastien Helleu
2008-10-18Remove unused option look.input_format, fix refresh bug with input prompt ↵Sebastien Helleu
for IRC buffers
2008-10-18Aspell plugin is born againSebastien Helleu
2008-10-10Use key shift-tab to force partial completion (when no completion is ↵Sebastien Helleu
pending), remove automatic partial completion on option names Behaviour of shift-key stays the same if there's a completion found, it completes with previous completion found.
2008-09-18Remove "category" for buffers (keep only name).Sebastien Helleu
2008-08-30Add new hooks (info and infolist), IRC plugin now return infos and infolistsSebastien Helleu
2008-06-18Add new options for completion, optional stop instead of cycling with words ↵Sebastien Helleu
found
2008-06-03Add "const" keyword for some "char *" function arguments (core and plugins API)Sebastien Helleu
2008-04-29Removed key functions (replaced by /input command)Sebastien Helleu
2008-04-24Added completion with possible values for /set, new possible values "++n" ↵Sebastien Helleu
and "--n" for integers and colors
2008-04-20Fixed broken completion on buffers where nicklist is not displayed (bug #23006)Sebastien Helleu