From 0cf12cd88bc71437a3985ad573815a3dc6ca1800 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 14 Oct 2024 09:32:27 -0700 Subject: [PATCH] input: make clear the open keybinding uses xdg-open --- src/input/Binding.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/input/Binding.zig b/src/input/Binding.zig index 30984b0de..c9e90d946 100644 --- a/src/input/Binding.zig +++ b/src/input/Binding.zig @@ -266,6 +266,8 @@ pub const Action = union(enum) { /// /// - "paste": Paste the file path into the terminal. /// - "open": Open the file in the default OS editor for text files. + /// The default OS editor is determined by using `open` on macOS + /// and `xdg-open` on Linux. /// write_scrollback_file: WriteScreenAction,