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.
2 parents 756f5bd + 7ceab58 commit c9b67deCopy full SHA for c9b67de
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