summary refs log tree commit diff
AgeCommit message (Collapse)Author
2019-02-25Add M-l to list the logCurtis McEnroe
2019-02-25Output raw to standard error if it is not a terminalCurtis McEnroe
2019-02-25Update tag colorsCurtis McEnroe
This kind of incurs a lot of writes usually for no reason. The only place this matters is when cold-opening a /query. I wonder if there's a better way to do that.
2019-02-25Add color to tagsCurtis McEnroe
2019-02-25Remove tag X macros againCurtis McEnroe
2019-02-25Add M-a to switch to hot or unread windowCurtis McEnroe
2019-02-25Refactor uiReadCurtis McEnroe
Centralizes the branching.
2019-02-24Scroll by full pages with PageUp/PageDownCurtis McEnroe
2019-02-23Clarify /window documentationCurtis McEnroe
2019-02-23Use first word of params in input commandsCurtis McEnroe
Prevents anything weird from happening when tab-completing, which inserts a space.
2019-02-23Add C-n and C-p key bindings to switch windowsCurtis McEnroe
2019-02-23Change example command to join #ascii.town on freenodeCurtis McEnroe
2019-02-23Call def_prog_mode after termNoFlowCurtis McEnroe
So that the settings get restored after /url or /man.
2019-02-22Move IRC formatting reset to C-sCurtis McEnroe
Opens C-n for window switching.
2019-02-22Disable terminal flow controlCurtis McEnroe
This opens up C-o, C-q and C-s for key bindings without C-v.
2019-02-22Bind up and down arrows to scrollCurtis McEnroe
Honestly it's kind of weird that IRC clients usually use these for input history.
2019-02-22Remove topic TODOCurtis McEnroe
I played around with it and it doesn't look right unless there is only one channel listed in the status.
2019-02-22Add /znc commandCurtis McEnroe
Only because ZNC tells you to use it and expects it to work.
2019-02-22Update status line after scrolling and term eventsCurtis McEnroe
2019-02-22Reorganize input.cCurtis McEnroe
2019-02-22Fix name of <raw> window in man pageCurtis McEnroe
2019-02-22Rename global tags with angle bracketsCurtis McEnroe
2019-02-22Show status window while connectingCurtis McEnroe
2019-02-22Reorganize UI code for the umpteenth timeCurtis McEnroe
It's actually in a good state now, I think.
2019-02-21Replace "view" with "window"Curtis McEnroe
I think originally I didn't want to use the same word as curses WINDOW but it's really much clearer for the user if they're just called windows. UI code probably needs yet another rewrite though. Still feels messy.
2019-02-21Remove ROT13Curtis McEnroe
It's just not convenient when it can only do the whole line...
2019-02-21Clean up man pageCurtis McEnroe
2019-01-26Draw UI before connectingCurtis McEnroe
Otherwise the "Traveling" message isn't visible while connecting.
2019-01-25Avoid unused variable warnings with getyxCurtis McEnroe
2019-01-25Add GNU/Linux build instructionsCurtis McEnroe
2019-01-25Add Linux.mkCurtis McEnroe
2019-01-25Use getline in place of fgetlnCurtis McEnroe
2019-01-25Use memmem in place of strnstrCurtis McEnroe
2019-01-24Remove FreeBSD-specific iswascii callCurtis McEnroe
2019-01-24Make all tar flags consistentCurtis McEnroe
2019-01-24Tweak Makefile ordering and namingCurtis McEnroe
2019-01-17Update chroot files for LibreSSL 2.8.3Curtis McEnroe
2018-12-30Typedef function types, not pointersCurtis McEnroe
2018-12-16Add M-? to apply ROT13Curtis McEnroe
2018-12-16Move base64 back to pls.cCurtis McEnroe
2018-12-16Move base64 to string.cCurtis McEnroe
2018-12-15Underline own nickCurtis McEnroe
2018-12-14Treat EOF as expected if self.quitCurtis McEnroe
znc doesn't seem to respond to QUIT with ERROR like an IRCd would.
2018-12-14Factor out ircQuitCurtis McEnroe
2018-12-08Add uint typedefCurtis McEnroe
2018-12-05Add /raw commandCurtis McEnroe
2018-12-05Send input errors to the current tagCurtis McEnroe
2018-12-05Rename verbose to rawCurtis McEnroe
And change the format of the sticky tag names again.
2018-12-05Add standards needed for SASL to catgirl.1Curtis McEnroe
2018-12-04Implement SASL PLAIN authenticationCurtis McEnroe