summaryrefslogtreecommitdiff
path: root/src/gui/gui-completion.c
AgeCommit message (Collapse)Author
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
2008-04-18Replaced /builtin command by /command, and can now be used to launch ↵Sebastien Helleu
commands with same name from different plugins
2008-04-11Improved /set command, added /unset command, new name for config files (*.conf)Sebastien Helleu
2008-04-03New features and bug fixes with barsSebastien Helleu
2008-03-23Removed sizeof(char) and useless type casts from void* to another pointer ↵Sebastien Helleu
type (patch from Leonid Evdokimov)
2008-03-22Added tags for lines and custom filtering by tags or regex (task #7674), ↵Sebastien Helleu
fixed many memory leaks
2008-02-02Use of sizeof(char) in all malloc/realloc for stringsSebastien Helleu
2008-01-30Nick completion enabled again, plugins can now override default nick ↵Sebastien Helleu
completion (IRC plugin uses that feature)
2008-01-27Added config file functions in plugins API, improved /reload and /save ↵Sebastien Helleu
commands (now possible to reload/save some files only), fixed completion bug
2008-01-24Add 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-09Partial migration of Perl plugin to new APISebastien Helleu
2008-01-02Update of year in some copyrightsSebastien Helleu
2007-12-17New backlog option in logger plugin, added variable names in .h files, ↵Sebastien Helleu
replaced "void *" pointers by structures
2007-12-14Improved 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-11Many changes in IRC plugin, added IRC specific completionsSebastien Helleu
2007-12-07Added completion hook, to let plugins add custom completions for commandsSebastien Helleu
2007-12-07Many changes in IRC plugin and plugins APISebastien Helleu
2007-12-04Removed WeeChat "command" structure, now all internal commands are hooked ↵Sebastien Helleu
when WeeChat starts
2007-12-03Added alias plugin, added missing config file functions in plugins APISebastien Helleu