summaryrefslogtreecommitdiff
path: root/src/cli/list_keybinds.zig
diff options
context:
space:
mode:
authorMitchell Hashimoto <mitchell.hashimoto@gmail.com>2024-01-26 09:04:32 -0800
committerMitchell Hashimoto <mitchell.hashimoto@gmail.com>2024-01-26 09:04:32 -0800
commit26c7215cf8a6ba77ee9fe7be29cd10f578129c1e (patch)
tree0bfcbda932fa60faa1f94dc2bcd5d93abc058b40 /src/cli/list_keybinds.zig
parentd50307c219559c3422c128402366b850ae98295e (diff)
forgot commit to get #1363 building to new API
Diffstat (limited to 'src/cli/list_keybinds.zig')
-rw-r--r--src/cli/list_keybinds.zig5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cli/list_keybinds.zig b/src/cli/list_keybinds.zig
index 56d6bb89a..f2db8fe81 100644
--- a/src/cli/list_keybinds.zig
+++ b/src/cli/list_keybinds.zig
@@ -50,7 +50,10 @@ pub fn run(alloc: Allocator) !u8 {
defer config.deinit();
const stdout = std.io.getStdOut().writer();
- try config.keybind.formatEntryDocs(opts.docs, configpkg.entryFormatter("keybind", stdout));
+ try config.keybind.formatEntryDocs(
+ configpkg.entryFormatter("keybind", stdout),
+ opts.docs,
+ );
return 0;
}