aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/main.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs
index c35c84d2..07f1ffff 100644
--- a/helix-term/src/main.rs
+++ b/helix-term/src/main.rs
@@ -30,9 +30,11 @@ fn main() -> Result<(), Error> {
smol::block_on(async {
let res = lsp.initialize().await;
- // Application::new(args).unwrap().run().await;
-
+ let state = helix_core::State::load("test.rs".into(), &[]).unwrap();
+ let res = lsp.text_document_did_open(&state).await;
loop {}
+
+ // Application::new(args).unwrap().run().await;
});
Ok(())