aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorBjorn Ove Hay Andersen2022-06-15 17:29:58 +0000
committerGitHub2022-06-15 17:29:58 +0000
commit794576a5b0b9a7b9e59275acd47448525de1aac1 (patch)
tree4de2a843daf5ab7af957485e48604b7bbef11a1e /helix-term
parent11dadab371c126cdecd333c142175ee089692b9e (diff)
Update auto-pairs and idle-timeout when the config is reloaded (#2736)
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/application.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 2dfccf04..0c8de2ab 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -287,6 +287,10 @@ impl Application {
self.config.store(Arc::new(app_config));
}
}
+
+ // Update all the relevant members in the editor after updating
+ // the configuration.
+ self.editor.refresh_config();
}
fn refresh_config(&mut self) {
@@ -316,6 +320,7 @@ impl Application {
}),
);
}
+
self.config.store(Arc::new(config));
}