mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-18 17:56:09 +03:00
fix: use imported modules consistently in action dispatch
This commit is contained in:
@ -163,8 +163,8 @@ pub const Action = enum {
|
||||
.@"list-themes" => try list_themes.run(alloc),
|
||||
.@"list-colors" => try list_colors.run(alloc),
|
||||
.@"list-actions" => try list_actions.run(alloc),
|
||||
.@"list-ssh-cache" => @import("list_ssh_cache.zig").run(alloc),
|
||||
.@"clear-ssh-cache" => @import("clear_ssh_cache.zig").run(alloc),
|
||||
.@"list-ssh-cache" => try list_ssh_cache.run(alloc),
|
||||
.@"clear-ssh-cache" => try clear_ssh_cache.run(alloc),
|
||||
.@"edit-config" => try edit_config.run(alloc),
|
||||
.@"show-config" => try show_config.run(alloc),
|
||||
.@"validate-config" => try validate_config.run(alloc),
|
||||
|
Reference in New Issue
Block a user