We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
syncOnStart
1 parent 1b17160 commit a9b0d73Copy full SHA for a9b0d73
1 file changed
src/server.rs
@@ -101,9 +101,12 @@ impl LanguageServer for Backend {
101
}
102
103
async fn initialized(&self, _: InitializedParams) {
104
- if self.should_sync() {
105
- self.do_sync().await;
106
- }
+ // FIXME: this causes the server to crash ONLY when used through
+ // Sublime Text's LSP framework.
+ //
107
+ // if self.should_sync() {
108
+ // self.do_sync().await;
109
+ // }
110
self.client
111
.log_message(MessageType::INFO, "initialized!")
112
.await;
0 commit comments