summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-10 01:09:03 -0500
committerJune McEnroe <june@causal.agency>2020-02-10 01:09:03 -0500
commitf3fa88ef920c5fdfd5b4fd6cc0b00a38d9d25c53 (patch)
tree0a61d833b296ccb0424f9a5c2fdd36ee1bc6c091
parentAdd M-l (diff)
downloadcatgirl-f3fa88ef920c5fdfd5b4fd6cc0b00a38d9d25c53.tar.gz
catgirl-f3fa88ef920c5fdfd5b4fd6cc0b00a38d9d25c53.zip
Fix M-a so it properly cycles back to where it started
Diffstat (limited to '')
-rw-r--r--ui.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/ui.c b/ui.c
index 66c695f..d94351a 100644
--- a/ui.c
+++ b/ui.c
@@ -697,12 +697,10 @@ void uiCloseNum(size_t num) {
 }
 
 static void showAuto(void) {
-	static bool origin;
-	if (!origin) {
-		windows.other = windows.active;
-		origin = true;
+	static struct Window *other;
+	if (windows.other != other) {
+		other = windows.active;
 	}
-	struct Window *other = windows.other;
 	for (struct Window *window = windows.head; window; window = window->next) {
 		if (window->heat < Hot) continue;
 		windowShow(window);
@@ -716,7 +714,6 @@ static void showAuto(void) {
 		return;
 	}
 	windowShow(windows.other);
-	origin = false;
 }
 
 static void keyCode(int code) {
='2021-01-13 00:25:08 -0500'>2021-01-13Add hilex example to htagml manualJune McEnroe 2021-01-12Style causal.agency like bin HTMLJune McEnroe 2021-01-12Avoid matching tag text inside HTML elementsJune McEnroe 2021-01-12Use hilex for up -hJune McEnroe 2021-01-12Use hilex for bin HTMLJune McEnroe 2021-01-12Don't output a pre in hilex by defaultJune McEnroe 2021-01-12Move hilex out of hilex directoryJune McEnroe 2021-01-12Consolidate hilex formatters into hilex.cJune McEnroe 2021-01-12Remove hacky tagging from hilexJune McEnroe 2021-01-12Add htagml -iJune McEnroe 2021-01-12Render tag index in HTMLJune McEnroe 2021-01-12Add htagml -xJune McEnroe 2021-01-12Prevent matching the same tag twiceJune McEnroe 2021-01-12Process htagml file line by lineJune McEnroe 2021-01-12Split fields by tab onlyJune McEnroe 2021-01-12List both Makefile and html.sh under README.7June McEnroe 2021-01-12Add htagml exampleJune McEnroe 2021-01-12Use mandoc and htagml for bin htmlJune McEnroe 2021-01-12Add htagmlJune McEnroe 2021-01-12Replace causal.agency with a simple mdoc pageJune McEnroe 2021-01-11Publish "Using vi"June McEnroe 2021-01-11Enable diff.colorMovedJune McEnroe 2021-01-10Set less search case-insensitiveJune McEnroe 2021-01-10Set EXINITJune McEnroe 2021-01-09Add c -t flag to print expression typeJune McEnroe 2021-01-05Update taglineJune McEnroe