From 9acf464e566643863f13fcc294db032349395888 Mon Sep 17 00:00:00 2001 From: Brian Heylin <3947+bheylin@users.noreply.github.com> Date: Sun, 12 Feb 2023 14:14:21 +0100 Subject: [PATCH] Add `helix` variant to accepted editors --- zellij-server/src/os_input_output.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/zellij-server/src/os_input_output.rs b/zellij-server/src/os_input_output.rs index 6f1ed2bf67..ccd0f855c7 100644 --- a/zellij-server/src/os_input_output.rs +++ b/zellij-server/src/os_input_output.rs @@ -301,6 +301,7 @@ fn spawn_terminal( || command.ends_with("nano") || command.ends_with("kak") || command.ends_with("hx") + || command.ends_with("helix") { failover_cmd_args = Some(vec![file_to_open.clone()]); args.push(format!("+{}", line_number));