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.
1 parent 756f5bd commit 7ceab58Copy full SHA for 7ceab58
source/gpr/lsp-gpr_handlers.adb
@@ -489,10 +489,15 @@ package body LSP.GPR_Handlers is
489
Value : LSP.Structures.InitializeParams)
490
is
491
Response : LSP.Structures.InitializeResult;
492
+ Capabilities : LSP.Structures.ServerCapabilities;
493
494
begin
495
Self.File_Reader := LSP.GPR_File_Readers.Create (Self'Unchecked_Access);
496
497
+ Capabilities.hoverProvider := LSP.Constants.True;
498
+
499
+ Response.capabilities := Capabilities;
500
501
Response.capabilities.textDocumentSync :=
502
(Is_Set => True,
503
Value => (Is_TextDocumentSyncOptions => True,
0 commit comments