about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-09-18 22:00:30 -0400
committerJune McEnroe <june@causal.agency>2022-09-18 22:00:30 -0400
commit012f57e80e15cdc8e588cf6ccfaa7133befac7aa (patch)
tree6d2affe7467ae96dc9dbdd492beb588c90bfaa99
parentOnly require C (diff)
downloadcards-master.tar.gz
cards-master.zip
Make copyrights and AUTHORS consistent HEAD master
Diffstat (limited to '')
-rw-r--r--cards.32
-rw-r--r--cards.c2
-rw-r--r--cards.h2
-rw-r--r--dump.c2
-rw-r--r--example.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/cards.3 b/cards.3
index 26c142c..fd46051 100644
--- a/cards.3
+++ b/cards.3
@@ -228,4 +228,4 @@ documented at
 .El
 .
 .Sh AUTHORS
-.An C. McEnroe Aq Mt june@causal.agency
+.An June McEnroe Aq Mt june@causal.agency
diff --git a/cards.c b/cards.c
index ddc5b86..c9467f3 100644
--- a/cards.c
+++ b/cards.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2019  C. McEnroe <june@causal.agency>
+/* Copyright (C) 2019  June McEnroe <june@causal.agency>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as published by
diff --git a/cards.h b/cards.h
index 9625cb8..89baf5d 100644
--- a/cards.h
+++ b/cards.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2019  C. McEnroe <june@causal.agency>
+/* Copyright (C) 2019  June McEnroe <june@causal.agency>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as published by
diff --git a/dump.c b/dump.c
index 127d6b1..3e39292 100644
--- a/dump.c
+++ b/dump.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2019  C. McEnroe <june@causal.agency>
+/* Copyright (C) 2019  June McEnroe <june@causal.agency>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as published by
diff --git a/example.c b/example.c
index 859adc1..036a44a 100644
--- a/example.c
+++ b/example.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2019  C. McEnroe <june@causal.agency>
+/* Copyright (C) 2019  June McEnroe <june@causal.agency>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as published by
ohover-highlight'> 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