aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
authorJonatan Pettersson2023-03-14 02:53:38 +0000
committerGitHub2023-03-14 02:53:38 +0000
commitd479adfdc672b266ae5755bc7f5ad224017747c5 (patch)
tree2cbe34cd0344b27ea60110d3ae993c03516a5a89 /helix-term/src/application.rs
parent3e03a1a99bc66a9b04dc293b9aa277ca4b7becae (diff)
Add undercurl config option #6196 (#6253)
If set to 'true' this option will force terminal undercurl support.
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r--helix-term/src/application.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 1cec213c..14636829 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -134,7 +134,7 @@ impl Application {
let syn_loader = std::sync::Arc::new(syntax::Loader::new(syn_loader_conf));
#[cfg(not(feature = "integration"))]
- let backend = CrosstermBackend::new(stdout());
+ let backend = CrosstermBackend::new(stdout(), &config.editor);
#[cfg(feature = "integration")]
let backend = TestBackend::new(120, 150);