-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathlspserver.pas
More file actions
32 lines (26 loc) · 1.09 KB
/
lspserver.pas
File metadata and controls
32 lines (26 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit lspserver;
{$warn 5023 off : no warning about unused units}
interface
uses
PasLS.General, PasLS.References, PasLS.Diagnostics, PasLS.GotoDeclaration,
PasLS.GotoDefinition, PasLS.GotoImplementation, PasLS.Completion,
PasLS.SignatureHelp, PasLS.Synchronization, PasLS.AllCommands,
PasLS.CodeAction, PasLS.DocumentHighlight, PasLS.Hover, PasLS.InlayHint,
PasLS.Workspace, PasLS.ApplyEdit, PasLS.RemoveEmptyMethods,
PasLS.Command.CompleteCode, PasLS.Command.FormatCode,
PasLS.Command.InvertAssignment, PasLS.Command.RemoveEmptyMethods,
PasLS.DocumentSymbol, PasLS.Commands, PasLS.Formatter, PasLS.ExecuteCommand,
PasLS.CodeUtils, PasLS.InvertAssign, PasLS.LazConfig, PasLS.Parser,
PasLS.Symbols, PasLS.CheckInactiveRegions, PasLS.InactiveRegions,
PasLS.Command.RemoveUnusedUnits, PasLS.RemoveUnusedUnits,
PasLS.Rename, LazarusPackageIntf;
implementation
procedure Register;
begin
end;
initialization
RegisterPackage('lspserver', @Register);
end.