summaryrefslogtreecommitdiff
path: root/src/plugins/irc/irc-completion.c
AgeCommit message (Collapse)Author
2012-01-08core: update copyright datesSebastien Helleu
2011-11-12irc: add case insensitive string comparison based on casemapping of server ↵Sebastien Helleu
(rfc1459, strict-rfc1459, ascii) (bug #34239)
2011-10-26core: remove unneeded whitespaceSebastien Helleu
2011-02-10Fix crash when completing /part command on a non-irc buffer (bug #32402)Sebastien Helleu
2011-01-01Update copyright datesSebastien Helleu
2010-11-09Fix irc topic completion in command /topic when channel topic starts with ↵Sebastien Helleu
channel name
2010-11-06Add IRC command /notify, new options for notify and infolist "irc_notify" ↵Sebastien Helleu
(task #5441) This commit provides: - new IRC command /notify - new options: irc.look.notify_tags_ison, irc.look.notify_tags_whois, irc.network.notify_check_ison, irc.network.notify_check_whois - new option "notify" in servers (but should not be changed, only /notify command should be used) - infolist "irc_notify" to get notify list (by server or for all servers).
2010-10-09Move some IRC options from network section to server section (task #10664, ↵Sebastien Helleu
task #10668) Options moved: connection_timeout, anti_flood_prio_high, anti_flood_prio_low, away_check, away_check_max_nicks, default_msg_part, default_msg_quit.
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-03-19Move /away command from irc plugin to coreSebastien Helleu
2010-01-03Update copyright datesSebastien Helleu
2009-08-28Add 2 new completions (irc_server_channels and irc_server_privates), improve ↵Sebastien Helleu
completion of command /invite
2009-05-09Add completion %(irc_privates), used by /buffer (completes with channels and pv)Sebastien Helleu
2009-04-11Add support of many templates for completion of command arguments, rename ↵Sebastien Helleu
default completion items
2009-04-03Add new values for option irc.look.nick_completion_smart: off / speakers / ↵Sebastien Helleu
speakers_highlights
2009-04-03Fix bug with nick completion (too many nick completors were added to nick if ↵Sebastien Helleu
private was open with nick)
2009-03-23Add completion with self nick in irc/jabber private buffersSebastien 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-03Update copyright datesSebastien Helleu
2008-12-17Improve nick completion: complete first by nicks that highlight me, before ↵Sebastien Helleu
nicks speaking without highlight
2008-11-15Use of const for some functions returning "char *"Sebastien Helleu
2008-10-18Remove unused option look.input_format, fix refresh bug with input prompt ↵Sebastien Helleu
for IRC buffers
2008-09-21Add IRC bar items (buffer name, lag indicator), use bar items from plugins ↵Sebastien Helleu
with callback to core items if not found
2008-09-18Remove "category" for buffers (keep only name).Sebastien 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-05-06Fix crash after closing channels/pv (internal channel structure was not ↵Sebastien Helleu
deleted) (bug #23178)
2008-04-30IRC colors reintroducedSebastien Helleu
2008-04-11Improved /set command, added /unset command, new name for config files (*.conf)Sebastien Helleu
2008-03-23Removed sizeof(char) and useless type casts from void* to another pointer ↵Sebastien Helleu
type (patch from Leonid Evdokimov)
2008-03-23Check plugin version when loading it, to prevent crash when loading old pluginsSebastien Helleu
2008-02-03Fixed "irc_server_nicks" completion (now completes with current server only) ↵Sebastien Helleu
(bug #21558)
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-09Partial migration of Perl plugin to new APISebastien Helleu
2008-01-06Added hotlist option for buffer in plugins API, improved buffer refreshsSebastien Helleu
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-11Many changes in IRC plugin, added IRC specific completionsSebastien Helleu