From 96313cc9f097dbd4b15b7a7c2fd75f268932413f Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 28 Nov 2023 16:46:17 -0500 Subject: Link to lands quiz and alphabet ranking --- www/causal.agency/index.7 | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'www/causal.agency') diff --git a/www/causal.agency/index.7 b/www/causal.agency/index.7 index c270f477..02c2cadf 100644 --- a/www/causal.agency/index.7 +++ b/www/causal.agency/index.7 @@ -1,10 +1,10 @@ -.Dd November 3, 2021 +.Dd November 28, 2023 .Dt CAUSAL.AGENCY 7 .Os "Causal Agency" . .Sh NAME .Nm june -.Nd computer enthusiast (her) +.Nd computer enthusiast (she/her) . .Sh SYNOPSIS .Nm mail @@ -64,4 +64,11 @@ an earthy terminal colour scheme .El . .Sh SEE ALSO +.Bl -bullet +.It .Lk /bin/ bin +.It +.Lk lands.html "Magic lands quiz" +.It +.Lk alpha.html "alphabet ranking game" +.El -- cgit 1.4.1 tion value='twitch'>twitch IRC client
summary refs log tree commit diff
path: root/ui.c (unfollow)
Commit message (Collapse)Author
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