You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: language-server/vscoqtop/lspManager.ml
+7-5
Original file line number
Diff line number
Diff line change
@@ -452,15 +452,14 @@ let textDocumentCompletion id params =
452
452
Error {message; code=None}, []
453
453
454
454
letdocumentSymbolidparams=
455
-
letLsp.Types.DocumentSymbolParams.{ textDocument = {uri}; partialResultToken; workDoneToken } = params in
456
-
beginmatch workDoneToken with
457
-
|Sometoken -> log "WE HAVE A TOKEN"
458
-
|None -> log "No TOKEN :'("
459
-
end;
455
+
letLsp.Types.DocumentSymbolParams.{ textDocument = {uri}; partialResultToken; workDoneToken } = params in(*TODO: At some point we might get ssupport for partialResult and workDone*)
460
456
matchHashtbl.find_opt states (DocumentUri.to_path uri) with
461
457
|None -> log @@"[documentSymbol] ignoring event on non existent document"; Error({message="Document does not exist"; code=None}), []
0 commit comments