Window switching initial

This commit is contained in:
Max Bretschneider
2025-10-21 22:13:42 +02:00
committed by Mitchell Hashimoto
parent 1805a9cb87
commit 1c1ef99fb1
6 changed files with 88 additions and 0 deletions

View File

@@ -479,6 +479,20 @@ fn actionCommands(action: Action.Key) []const Command {
},
},
.goto_window => comptime &.{
.{
.action = .{ .goto_window = .previous },
.title = "Focus Window: Previous",
.description = "Focus the previous window, if any.",
},
.{
.action = .{ .goto_window = .previous },
.title = "Focus Window: Next",
.description = "Focus the next window, if any.",
},
},
.toggle_split_zoom => comptime &.{.{
.action = .toggle_split_zoom,
.title = "Toggle Split Zoom",