Unnamed repository; edit this file 'description' to name the repository.
Add wezterm to get_terminal_provider (#3588)
https://github.com/wez/wezterm is a terminal emulator with its own built-in multiplexer
unrelentingtech 2022-08-29
parent eeb0a9f · commit 51b6223
-rw-r--r--helix-view/src/editor.rs7
1 files changed, 7 insertions, 0 deletions
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<TerminalConfig> {
});
}
+ 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
}