input: command palette actions must use formatter, not tag (#9325)

Regression from our Zig 0.15 migration.
pull/9331/head
Mitchell Hashimoto 2025-10-23 12:49:55 -07:00 committed by GitHub
parent 66486901f5
commit fb5b8d7968
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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,
};