aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
Diffstat (limited to 'helix-view')
-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
}