diff options
author | Omnikar | 2021-12-01 22:59:23 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-04-20 02:37:23 +0000 |
commit | e6b865ed0b1b77934733d86b59d60870e9f5881f (patch) | |
tree | f090ee3a7078b3109102abb3f555acb241ef4cd5 /helix-term/src/application.rs | |
parent | 94eba0e66aa193c093b1d7eefc0e21391cb2485f (diff) |
allow whitespace to be rendered
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r-- | helix-term/src/application.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 7733c2c6..91caade7 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -283,7 +283,7 @@ impl Application { // the Application can apply it. ConfigEvent::Update(editor_config) => { let mut app_config = (*self.config.load().clone()).clone(); - app_config.editor = editor_config; + app_config.editor = *editor_config; self.config.store(Arc::new(app_config)); } } |