summary refs log tree commit diff
path: root/chat.h
AgeCommit message (Collapse)Author
2020-02-15Separate network info from selfC. McEnroe
2020-02-14Add /inviteC. McEnroe
2020-02-14Add /awayC. McEnroe
2020-02-13Add /execC. McEnroe
2020-02-13Rename procPipe to utilPipeC. McEnroe
2020-02-13Refactor windows into array and add /moveC. McEnroe
Oof.
2020-02-13Explicitly close the TLS connectionC. McEnroe
Just to be nice.
2020-02-12Add -N flag for notificationsC. McEnroe
2020-02-13Implement source address selectionmultiplexd
This commit adds a '-S' command line option and a "bind" configuration file option to specify the source address to bind to when connecting to the IRC server.
2020-02-12Add /listC. McEnroe
2020-02-12Add C-t transposeC. McEnroe
Also in emacs, weechat.
2020-02-12Allow for arguments to open/copy utilitiesC. McEnroe
2020-02-11Add -R restricted flagC. McEnroe
2020-02-11Define ColorCap instead of hardcoding 100C. McEnroe
2020-02-11Move hash to top of chat.hC. McEnroe
2020-02-11Move base64 out of chat.hC. McEnroe
2020-02-11Move XDG_SUBDIR out of chat.hC. McEnroe
2020-02-11Declare strlcatC. McEnroe
2020-02-10Only automatically switch to expected joinsC. McEnroe
2020-02-10Factor out XDG base directory codeC. McEnroe
And add warnings to configOpen, since that's the only way to be accurate if a weird error occurs.
2020-02-10Add -s to save and load buffersC. McEnroe
2020-02-10Eliminate array in hashC. McEnroe
I expected to have to remove some arbitrary colors, but it seems like just the range 2-75 works fine.
2020-02-10Add -HC. McEnroe
2020-02-10Hash to colors in the range 2-75C. McEnroe
Colors 76-87 seem too light, some almost appearing white. Colors 88-98 are shades of gray.
2020-02-09Add /whoisC. McEnroe
2020-02-09Add C-yC. McEnroe
This is weechat's binding for it.
2020-02-09Add C-w and M-dC. McEnroe
2020-02-09Rename kill opsC. McEnroe
2020-02-09Add M-b and M-fC. McEnroe
2020-02-09Add C-kC. McEnroe
Also rename all the edit ops to something consistent.
2020-02-09Add C-dC. McEnroe
2020-02-09Simplify edit buffer conversion and input renderingC. McEnroe
2020-02-09Show realname on JOIN if it is different from nickC. McEnroe
2020-02-08Add /copyC. McEnroe
2020-02-08Allow overriding the /open utilityC. McEnroe
2020-02-08Scan messages for URLsC. McEnroe
2020-02-08Add procPipe for subprocessesC. McEnroe
2020-02-08Only show expected topic/names repliesC. McEnroe
2020-02-08Add /closeC. McEnroe
2020-02-08Handle ID overflowC. McEnroe
idk just shove it all in <network>.
2020-02-08Handle KICKC. McEnroe
See I knew the color cache in complete would be useful in at least one place!
2020-02-08Handle NICKC. McEnroe
2020-02-07Clear completion for ID on self-partC. McEnroe
2020-02-07Update completion on join, part, privmsgC. McEnroe
2020-02-07Populate completion with commandsC. McEnroe
2020-02-07Add some real line editing operationsC. McEnroe
2020-02-06Set id color to Default on allocationC. McEnroe
2020-02-06Search for cert and priv in config dirsC. McEnroe
2020-02-05Use getopt_config to load optionsC. McEnroe
I'm really getting a lot of use out of this config.c huh.
2020-02-05Add /windowC. McEnroe