summary refs log tree commit diff
Commit message (Expand)AuthorAge
* Fix what went wrong, part 2June McEnroe2023-02-05
* Fix what went wrong, part 1June McEnroe2023-02-05
* Flatten cache structsJune McEnroe2023-02-03
* Handle missing LIST reply topic parameterJune McEnroe2022-09-23
* Make IRC Suite author consistentJune McEnroe2022-09-18
* Remove WHO reply handlersJune McEnroe2022-09-11
* Generate /ops from cacheJune McEnroe2022-09-11
* Set pointer to Entry in CursorJune McEnroe2022-09-11
* Use tparm, not tiparmJune McEnroe2022-08-17
* Don't use cached color to route away replyJune McEnroe2022-08-06
* Track prefix bitsJune McEnroe2022-08-02
* Move cache color to an Entry structJune McEnroe2022-07-31
* Only set cache color if not DefaultJune McEnroe2022-07-30
* Rename cache{Prefix,Substr} to cache{Complete,Search}June McEnroe2022-07-30
* Switch to cache interfacesJune McEnroe2022-07-30
* "Rename" complete to cache, refactor interfacesJune McEnroe2022-07-30
* Show STATUSMSG prefixJune McEnroe2022-07-30
* Refactor colorMentions to be seprintf-likeJune McEnroe2022-07-30
* Update copyrights, authorsJune McEnroe2022-07-30
* Remove EditModeJune McEnroe2022-07-30
* Use tiparm on to_status_lineJune McEnroe2022-07-28
* Only show old topic if something was removedJune McEnroe2022-06-26
* Use two lines to show topic diffsJune McEnroe2022-06-24
* Allow setting fallback nicks and highlight on anyJune McEnroe2022-05-29
* Document visibility of unknown repliesJune McEnroe2022-05-29
* Put unknown numerics in parenthesesJune McEnroe2022-05-29
* Route unknown channel replies to channelsJune McEnroe2022-05-08
* Show "You arrive" message only onceJune McEnroe2022-05-08
* Write unknown replies to Network with Ice heatJune McEnroe2022-05-08
* Sanitize leading dots from log path componentsJune McEnroe2022-04-20
* Add screenshot to READMEJune McEnroe2022-03-31
* Skip non-spacing when moving and deleting by "character"June McEnroe2022-03-16
* Document using -S to connect over IPv4 or IPv6June McEnroe2022-03-13
* Always refresh the screen with ^LChristian Kellermann2022-03-09
* Update STANDARDS section authors, titles and URLsJune McEnroe2022-03-05
* Show own nick on /nick without paramsJune McEnroe2022-03-02
* Specify commands which depend on capsJune McEnroe2022-02-26
* Only add available commands to completeJune McEnroe2022-02-26
* Factor out commandAvailableJune McEnroe2022-02-26
* Give examples of "general events" 2.1June McEnroe2022-02-23
* Add missing unistd.h include in input.cJune McEnroe2022-02-23
* Document the interfaceJune McEnroe2022-02-22
* Clean up unimplemented editing mode stuffJune McEnroe2022-02-20
* Save input buffer contentsJune McEnroe2022-02-20
* Share a cut buffer between all edit buffersJune McEnroe2022-02-20
* Assert return values in edit testsJune McEnroe2022-02-20
* Move mbs out of struct Edit, use a global bufferJune McEnroe2022-02-20
* Clear edit buffer before running commandJune McEnroe2022-02-20
* Show indicator in status when window has pending inputJune McEnroe2022-02-20
* Use separate edit buffers for each IDJune McEnroe2022-02-20
rors from editFn, etc.June McEnroe 2022-02-19Reimplement text macrosJune McEnroe 2022-02-19Factor out input handling to input.cJune McEnroe 2022-02-19Factor out window management to window.cJune McEnroe 2022-02-19Enable -Wmissing-prototypesJune McEnroe In other words, warn when a function is missing static. I don't see why this isn't in -Wextra. 2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 2022-02-19Run line editing testsJune McEnroe I know, it feels wrong. 2022-02-18Implement new line editing "library"June McEnroe Losing tab complete and text macros, for now. This new implementation works on an instance of a struct and does not interact with the rest of catgirl, making it possible to copy into another project. Unlike existing line editing libraries, this one is entirely abstract and can be rendered externally. My goal with this library is to be able to implement vi mode. Since it operates on struct instances rather than globals, it might also be possible to give catgirl separate line editing buffers for each window, which would be a nice UX improvement. 2022-02-18Simplify cursor positioning in inputJune McEnroe Do some extra work by adding the portion before the cursor to the input window twice, but simplify the interaction with the split point. This fixes the awkward behaviour when moving the cursor across colour codes where the code would be partially interpreted up to the cursor. 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe