diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2023-07-24 17:03:34 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2023-07-24 17:03:34 +0200 |
| commit | 7343fc4bdf4ffd616c1818bb2dfefa04d1242167 (patch) | |
| tree | ad5c8ef1d68c9511900802ced54d878ea404fa4f /src/server/types.odin | |
| parent | cbc578cc9bfc013866e726438296798ab6407d39 (diff) | |
Save the client name for specific client handling
Diffstat (limited to 'src/server/types.odin')
| -rw-r--r-- | src/server/types.odin | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/server/types.odin b/src/server/types.odin index 31a388e..42e9699 100644 --- a/src/server/types.odin +++ b/src/server/types.odin @@ -80,6 +80,11 @@ RequestInitializeParams :: struct { capabilities: ClientCapabilities, rootUri: string, initializationOptions: OlsConfig, + clientInfo: ClientInfo, +} + +ClientInfo :: struct { + name: string, } MarkupContent :: struct { @@ -490,4 +495,3 @@ WorkspaceSymbol :: struct { DidChangeConfigurationParams :: struct { settings: OlsConfig, } - |