diff options
author | Blaž Hrastnik | 2021-08-16 09:16:06 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-20 04:48:32 +0000 |
commit | d39baa3b4e1f5bc1a03533e7b22af0043ec1eac9 (patch) | |
tree | 11f769898442e5d4fbddb8aacf2b7ff05fb33cb5 /helix-term/src/application.rs | |
parent | 0300dbdeb378fa5797a23ce8b3f72e2749c3ce50 (diff) |
Start integrating into the editor's event loop
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r-- | helix-term/src/application.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 3d59c33a..59072a09 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -245,6 +245,15 @@ impl Application { } } + pub async fn handle_debugger_message( + &mut self, + call: (), + server_id: usize, + ) { + + // + } + pub async fn handle_language_server_message( &mut self, call: helix_lsp::Call, |