diff --git a/src/keybind/builtin/flow.json b/src/keybind/builtin/flow.json index a9d8e89..79439e2 100644 --- a/src/keybind/builtin/flow.json +++ b/src/keybind/builtin/flow.json @@ -214,6 +214,7 @@ ["k", "open_keybind_config"], ["t", "change_theme"], ["f", "change_fontface"], + ["v", "open_version_info"], ["q", "quit"], ["ctrl+f ctrl+f ctrl+f ctrl+f ctrl+f", "home_sheeran"], ["ctrl+j", "toggle_panel"], diff --git a/src/tui/home.zig b/src/tui/home.zig index ad576cb..afa6b3a 100644 --- a/src/tui/home.zig +++ b/src/tui/home.zig @@ -38,6 +38,7 @@ const menu_commands = if (build_options.gui) &[_][]const u8{ "toggle_input_mode", "change_theme", "change_fontface", + "open_version_info", "quit", } else &[_][]const u8{ "open_help", @@ -49,6 +50,7 @@ const menu_commands = if (build_options.gui) &[_][]const u8{ "open_keybind_config", "toggle_input_mode", "change_theme", + "open_version_info", "quit", };