aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r--helix-term/src/application.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 075b9c35..09b7836f 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -41,7 +41,7 @@ type Signals = futures_util::stream::Empty<()>;
pub struct Application {
compositor: Compositor,
- editor: Editor,
+ pub editor: Editor,
config: Arc<ArcSwap<Config>>,
@@ -193,7 +193,7 @@ impl Application {
scroll: None,
};
- self.compositor.render(&mut cx);
+ // self.compositor.render(&mut cx);
}
pub async fn event_loop(&mut self) {