summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-13 05:10:55 -0500
committerJune McEnroe <june@causal.agency>2020-02-13 05:10:55 -0500
commita6bc2ea7c38814a5fd552826393cb870efdc263b (patch)
tree36f90312e5f17edc1ff85f47a46d337745654f93
parentRefactor windows into array and add /move (diff)
downloadcatgirl-a6bc2ea7c38814a5fd552826393cb870efdc263b.tar.gz
catgirl-a6bc2ea7c38814a5fd552826393cb870efdc263b.zip
Set swap correctly when closing a window
I knew I missed something.
Diffstat (limited to '')
-rw-r--r--ui.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.c b/ui.c
index b1eedaf..2fbb720 100644
--- a/ui.c
+++ b/ui.c
@@ -797,6 +797,7 @@ static void windowClose(size_t num) {
 	if (windows.swap >= num) windows.swap--;
 	if (windows.show == num) {
 		windowShow(windows.swap);
+		windows.swap = windows.show;
 	} else if (windows.show > num) {
 		windows.show--;
 	}
lass='logsubject'>Prefer tag matches not preceded by [[:alnum:]]June McEnroe Otherwise the "id" in "void" matches for "void id". 2021-01-19Escape \ and / in mtags search patternsJune McEnroe 2021-01-20Use mtags in source-filterJune McEnroe 2021-01-19Add mtags to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe These don't really go together, but... 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe Otherwise it ends up going into Shell state. 2021-01-18Allow matching lexers using first input lineJune McEnroe