From fb5b8d7968e6d760b53785ba169c751de75ac08d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 23 Oct 2025 12:49:55 -0700 Subject: [PATCH] input: command palette actions must use formatter, not tag (#9325) Regression from our Zig 0.15 migration. --- 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 0904ef2bb..8216d107a 100644 --- a/src/input/command.zig +++ b/src/input/command.zig @@ -50,7 +50,7 @@ pub const Command = struct { return .{ .action_key = @tagName(self.action), - .action = std.fmt.comptimePrint("{t}", .{self.action}), + .action = std.fmt.comptimePrint("{f}", .{self.action}), .title = self.title, .description = self.description, };