From 9fe6d0904841f2ef3d7b9ded6b5776d625682bcf Mon Sep 17 00:00:00 2001 From: salivala Date: Tue, 11 Nov 2025 13:08:42 -0500 Subject: [PATCH] isolating spawn to only current pressed tag in comboview --- src/dispatch/bind_define.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dispatch/bind_define.h b/src/dispatch/bind_define.h index 1f4af19f..b1b234bc 100644 --- a/src/dispatch/bind_define.h +++ b/src/dispatch/bind_define.h @@ -834,7 +834,10 @@ int comboview_spawn_on_empty(const Arg *arg) { view(&(Arg){.ui = newtags}, false); } if (is_empty) { + unsigned int old = selmon->tagset[selmon->seltags]; + selmon->tagset[selmon->seltags] = newtags; spawn(arg); + selmon->tagset[selmon->seltags] = old; } printstatus();