From 51b62230da81913564692482d8f365e27d6f6cec Mon Sep 17 00:00:00 2001 From: unrelentingtech Date: Mon, 29 Aug 2022 03:24:22 +0300 Subject: [PATCH] Add wezterm to get_terminal_provider (#3588) https://github.com/wez/wezterm is a terminal emulator with its own built-in multiplexer --- helix-view/src/editor.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 520a425c..0bf7ebd0 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -211,6 +211,13 @@ pub fn get_terminal_provider() -> Option { }); } + if env_var_is_set("WEZTERM_UNIX_SOCKET") && exists("wezterm") { + return Some(TerminalConfig { + command: "wezterm".to_string(), + args: vec!["cli".to_string(), "split-pane".to_string()], + }); + } + None }