keybind: add Mod+Esc -> focus_prev

This commit is contained in:
2026-07-26 22:09:33 +02:00
parent 4c80b60b93
commit 2d5c5445fa
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -198,6 +198,7 @@ pub const keys = tagKeys() ++ [_]Key{
.{ .mods = mod, .keysym = xkb.Keysym.@"0", .action = .{ .view = action.all_tags } },
.{ .mods = mod | Mods.shift, .keysym = xkb.Keysym.@"0", .action = .{ .tag = action.all_tags } },
.{ .mods = mod, .keysym = xkb.Keysym.Tab, .action = .view_prev },
.{ .mods = mod, .keysym = xkb.Keysym.Escape, .action = .view_prev },
// Outputs.
.{ .mods = mod, .keysym = xkb.Keysym.comma, .action = .{ .focus_output = .prev } },