summary refs log tree commit diff
path: root/handle.c (follow)
Commit message (Collapse)AuthorAge
* Fix isSelf user checkingJune McEnroe2018-08-11
| | | | | | | Other users with the same username are not self. The fun effect of this was that I could tab-complete "june_" but not "june".
* Become multi-channelJune McEnroe2018-08-10
| | | | There's a lot of UI missing for it, but it technically works.
* Remove unnecessary va_endJune McEnroe2018-08-10
| | | | va_end must be called before the function returns, but errx is noreturn.
* Rename chan to joinJune McEnroe2018-08-10
| | | | In preparation for multi-channel?
* Color brackets around nicksJune McEnroe2018-08-09
| | | | Also switch self-brackets to () since [] can appear in nicks.
* Fix 432 handler paramsJune McEnroe2018-08-09
|
* Replace shift with a great variadic functionJune McEnroe2018-08-09
| | | | | I am disappointed in the lack of compiler attributes for type-checking variadic functions.
* Only tabTouch nick if not selfJune McEnroe2018-08-09
|
* Add URL detection, listing and openingJune McEnroe2018-08-09
| | | | Might also add /copy, like /open.
* Distinguish self with square bracketsJune McEnroe2018-08-08
|
* Color own messages 15June McEnroe2018-08-08
| | | | | My own settings have "white" slightly darker than the default color, so this helps to distinguish my own messages.
* Highlight and beep pingsJune McEnroe2018-08-07
|
* Populate tab-complete listJune McEnroe2018-08-07
|
* Fix /me formatting side-effectsJune McEnroe2018-08-07
| | | | NEVER pass side-effects to a macro.
* Hack clang into checking uiFmt format stringsJune McEnroe2018-08-07
|
* Handle PART and QUIT without messagesJune McEnroe2018-08-07
|
* Make safe filling the who bufferJune McEnroe2018-08-07
|
* Use wchar_t strings for all of UIJune McEnroe2018-08-06
| | | | vaswprintf is a nightmare.
* Rename ui chat to logJune McEnroe2018-08-04
|
* Rename client to ircJune McEnroe2018-08-04
|
* Split source into several filesJune McEnroe2018-08-04
Can't believe I have to do this.