summary refs log tree commit diff
AgeCommit message (Collapse)Author
2020-02-11Move base64 out of chat.hC. McEnroe
2020-02-11Move XDG_SUBDIR out of chat.hC. McEnroe
2020-02-11Fix whois idle unit calculationC. McEnroe
Rookie mistake.
2020-02-11Cast towupper to wchar_tC. McEnroe
For some reason it takes and returns wint_t...
2020-02-11Cast set but unused variables to voidC. McEnroe
2020-02-11Declare strlcatC. McEnroe
2020-02-11Check if VDSUSP existsC. McEnroe
2020-02-11Fix completeReplace iterationC. McEnroe
2020-02-11Use pkg(8) to configure on FreeBSDC. McEnroe
2020-02-11Merge branch 'rewrite'C. McEnroe
2020-02-11Remove legacy codeC. McEnroe
2020-02-11Add INSTALLING section to READMEC. McEnroe
2020-02-11Add READMEC. McEnroe
Still missing: build requirements and instructions.
2020-02-10Invalidate title on uiShowC. McEnroe
2020-02-10Only write out title if it has changedC. McEnroe
2020-02-10Only write out title on uiDrawC. McEnroe
2020-02-10Manually raise SIGINT from C-cC. McEnroe
This allows it to still work, but makes C-z C-c insert the color code rather than exit, and in the future, will allow pasting in text with color codes.
2020-02-10Split on <> in colorMentionsC. McEnroe
This allows it to color the nick in the common case of pasting "<nick> something they said" into the chat. Technically it should color the brackets too but that would be too much work.
2020-02-10Replace alignment tabs with spaces in bufferListC. McEnroe
2020-02-10Add C-o as alias of M-/C. McEnroe
M-/ is from weechat. C-o is like in vim.
2020-02-10Only automatically switch to expected joinsC. McEnroe
2020-02-10Delegate to commandPrivmsg from commandMsgC. McEnroe
2020-02-10Synthesize a QUIT message to handle on exitC. McEnroe
So that the end of a saved buffer contains the self quit.
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-10Leave a blank line after loaded bufferC. McEnroe
2020-02-10Add -s to save and load buffersC. McEnroe
2020-02-10Show heat and other unread in titleC. 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-10Improve color fudgingC. McEnroe
Prevent fudged colors from ever being pure black. Distribute fudged colors between normal and bold if COLORS is 8. Fudge colors before checking if it's a pre-allocated pair.
2020-02-10Support all 99 IRC colorsC. McEnroe
Corresponding ANSI colors from the table on ircdocs.
2020-02-10Avoid coloring mentions if there are control codesC. McEnroe
This was breaking leading color codes.
2020-02-10Recalculate unreadLines on reflowC. McEnroe
2020-02-10Only make windows hotterC. McEnroe
A warm message shouldn't clear a window's hotness.
2020-02-10Always increase unreadLinesC. McEnroe
So that if you switch to a window and some new activity happens before you press M-u, it'll still jump to the right place.
2020-02-10Move scroll marker on resizeC. McEnroe
2020-02-10Update line count for words longer than linesC. McEnroe
2020-02-10Simplify mark, heat, unread trackingC. McEnroe
2020-02-10Update prompt when own nick changesC. McEnroe
2020-02-10Match URLs surrounded by parenthesesC. McEnroe
But include a pair of parentheses in the URL itself.
2020-02-10Fix M-a so it properly cycles back to where it startedC. McEnroe
2020-02-09Add M-lC. McEnroe
2020-02-09Add /whoisC. McEnroe
2020-02-09Add /msgC. McEnroe
Services tend to tell you to use /msg so it definitely needs to exist.
2020-02-09Add copy of GPLC. McEnroe
2020-02-09Add install targetC. McEnroe
2020-02-09Remove unnecessary uiDrawC. McEnroe
2020-02-09Avoid VLAs in tab completeC. McEnroe
2020-02-09Add /helpC. McEnroe
Now with automatic search! Also had to fix the SIGCHLD handling...