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.
shutdown
1 parent 8f36742 commit 9060f06Copy full SHA for 9060f06
source/ada/lsp-ada_handlers.adb
@@ -845,8 +845,11 @@ package body LSP.Ada_Handlers is
845
Request : LSP.Messages.Server_Requests.Shutdown_Request)
846
return LSP.Messages.Server_Responses.Shutdown_Response
847
is
848
- pragma Unreferenced (Self, Request);
+ pragma Unreferenced (Request);
849
begin
850
+ -- Suspend files/runtime indexing after shutdown requst
851
+ Self.Indexing_Enabled := False;
852
+
853
return Response : LSP.Messages.Server_Responses.Shutdown_Response
854
(Is_Error => False);
855
end On_Shutdown_Request;
0 commit comments