From f126ff85eca1255c0e50aeb913697ee220edebae Mon Sep 17 00:00:00 2001 From: figsoda Date: Fri, 30 Sep 2022 18:58:22 -0400 Subject: [PATCH] fix open key binding on non-macos platforms --- src/config/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/mod.rs b/src/config/mod.rs index 3a5846b..c9fb513 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -133,7 +133,7 @@ impl Config { }, KeyBinding { key: 'o', - command: String::from("open $0"), + command: crate::os_commands::open_command("$0"), ..Default::default() }, KeyBinding {