From 4f02e6c0965567ec8820732c8541fdfe1137ca59 Mon Sep 17 00:00:00 2001 From: Max Bretschneider Date: Fri, 24 Oct 2025 14:10:20 +0200 Subject: [PATCH] Wrong action typo fix --- src/input/command.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/command.zig b/src/input/command.zig index deb6e8412..a377effa2 100644 --- a/src/input/command.zig +++ b/src/input/command.zig @@ -486,7 +486,7 @@ fn actionCommands(action: Action.Key) []const Command { .description = "Focus the previous window, if any.", }, .{ - .action = .{ .goto_window = .previous }, + .action = .{ .goto_window = .next }, .title = "Focus Window: Next", .description = "Focus the next window, if any.", },