|
| 1 | +{ |
| 2 | + // These lines will be put as a header into each Ada file |
| 3 | + "license header": [ |
| 4 | + "", |
| 5 | + "Copyright (C) <YEAR>, <COPYRIGHT HOLDER>", |
| 6 | + "", |
| 7 | + "SPDX-License-Identifier: MIT", |
| 8 | + "" |
| 9 | + ], |
| 10 | + |
| 11 | + // Notification |
| 12 | + |
| 13 | + "$/cancelRequest": { |
| 14 | + "from": "both" |
| 15 | + }, |
| 16 | + "$/logTrace": { |
| 17 | + "from": "server" |
| 18 | + }, |
| 19 | + "$/progress": { |
| 20 | + "from": "both" |
| 21 | + }, |
| 22 | + "$/setTrace": { |
| 23 | + "from": "client" |
| 24 | + }, |
| 25 | + "exit": { |
| 26 | + "from": "client", |
| 27 | + "name": "Exits" |
| 28 | + }, |
| 29 | + "initialized": { |
| 30 | + "from": "client" |
| 31 | + }, |
| 32 | + "notebookDocument/didChange": { |
| 33 | + "from": "client", |
| 34 | + "name": "DidChangeNotebook" |
| 35 | + }, |
| 36 | + "notebookDocument/didClose": { |
| 37 | + "from": "client", |
| 38 | + "name": "DidCloseNotebook" |
| 39 | + }, |
| 40 | + "notebookDocument/didOpen": { |
| 41 | + "from": "client", |
| 42 | + "name": "DidOpenNotebook" |
| 43 | + }, |
| 44 | + "notebookDocument/didSave": { |
| 45 | + "from": "client", |
| 46 | + "name": "DidSaveNotebook" |
| 47 | + }, |
| 48 | + "telemetry/event": { |
| 49 | + "from": "server" |
| 50 | + }, |
| 51 | + "textDocument/didChange": { |
| 52 | + "from": "client" |
| 53 | + }, |
| 54 | + "textDocument/didClose": { |
| 55 | + "from": "client" |
| 56 | + }, |
| 57 | + "textDocument/didOpen": { |
| 58 | + "from": "client" |
| 59 | + }, |
| 60 | + "textDocument/didSave": { |
| 61 | + "from": "client" |
| 62 | + }, |
| 63 | + "textDocument/publishDiagnostics": { |
| 64 | + "from": "server" |
| 65 | + }, |
| 66 | + "textDocument/willSave": { |
| 67 | + "from": "client" |
| 68 | + }, |
| 69 | + "window/logMessage": { |
| 70 | + "from": "server" |
| 71 | + }, |
| 72 | + "window/showMessage": { |
| 73 | + "from": "server" |
| 74 | + }, |
| 75 | + "window/workDoneProgress/cancel": { |
| 76 | + "from": "client" |
| 77 | + }, |
| 78 | + "workspace/didChangeConfiguration": { |
| 79 | + "from": "client" |
| 80 | + }, |
| 81 | + "workspace/didChangeWatchedFiles": { |
| 82 | + "from": "client" |
| 83 | + }, |
| 84 | + "workspace/didChangeWorkspaceFolders": { |
| 85 | + "from": "client" |
| 86 | + }, |
| 87 | + "workspace/didCreateFiles": { |
| 88 | + "from": "client" |
| 89 | + }, |
| 90 | + "workspace/didDeleteFiles": { |
| 91 | + "from": "client" |
| 92 | + }, |
| 93 | + "workspace/didRenameFiles": { |
| 94 | + "from": "client" |
| 95 | + }, |
| 96 | + // Requests: |
| 97 | + |
| 98 | + // "callHierarchy/incomingCalls" |
| 99 | + // "callHierarchy/outgoingCalls" |
| 100 | + "client/registerCapability": { |
| 101 | + "from": "server" |
| 102 | + }, |
| 103 | + "client/unregisterCapability": { |
| 104 | + "from": "server" |
| 105 | + }, |
| 106 | + "codeAction/resolve": { |
| 107 | + "from": "client", |
| 108 | + "name": "Code_Action_Resolve" |
| 109 | + }, |
| 110 | + "codeLens/resolve": { |
| 111 | + "from": "client", |
| 112 | + "name": "Code_Lens_Resolve" |
| 113 | + }, |
| 114 | + "completionItem/resolve": { |
| 115 | + "from": "client", |
| 116 | + "name": "Completion_Resolve" |
| 117 | + }, |
| 118 | + "documentLink/resolve": { |
| 119 | + "from": "client", |
| 120 | + "name": "Link_Resolve" |
| 121 | + }, |
| 122 | + // "initialize" |
| 123 | + "inlayHint/resolve": { |
| 124 | + "from": "client", |
| 125 | + "name": "Inlay_Resolve" |
| 126 | + }, |
| 127 | + // "shutdown" |
| 128 | + // "textDocument/codeAction" |
| 129 | + // "textDocument/codeLens" |
| 130 | + // "textDocument/colorPresentation" |
| 131 | + // "textDocument/completion" |
| 132 | + // "textDocument/declaration" |
| 133 | + // "textDocument/definition" |
| 134 | + // "textDocument/diagnostic" |
| 135 | + // "textDocument/documentColor" |
| 136 | + // "textDocument/documentHighlight" |
| 137 | + // "textDocument/documentLink" |
| 138 | + // "textDocument/documentSymbol" |
| 139 | + // "textDocument/foldingRange" |
| 140 | + // "textDocument/formatting" |
| 141 | + // "textDocument/hover" |
| 142 | + // "textDocument/implementation" |
| 143 | + // "textDocument/inlayHint" |
| 144 | + // "textDocument/inlineValue" |
| 145 | + // "textDocument/linkedEditingRange" |
| 146 | + // "textDocument/moniker" |
| 147 | + // "textDocument/onTypeFormatting" |
| 148 | + // "textDocument/prepareCallHierarchy" |
| 149 | + // "textDocument/prepareRename" |
| 150 | + // "textDocument/prepareTypeHierarchy" |
| 151 | + // "textDocument/rangeFormatting" |
| 152 | + // "textDocument/references" |
| 153 | + // "textDocument/rename" |
| 154 | + // "textDocument/selectionRange" |
| 155 | + // "textDocument/semanticTokens/full" |
| 156 | + "textDocument/semanticTokens/full/delta": { |
| 157 | + "from": "client", |
| 158 | + "name": "Tokens_Delta" |
| 159 | + }, |
| 160 | + "textDocument/semanticTokens/range": { |
| 161 | + "from": "client", |
| 162 | + "name": "Tokens_Range" |
| 163 | + }, |
| 164 | + // "textDocument/signatureHelp" |
| 165 | + // "textDocument/typeDefinition" |
| 166 | + // "textDocument/willSaveWaitUntil" |
| 167 | + // "typeHierarchy/subtypes" |
| 168 | + // "typeHierarchy/supertypes" |
| 169 | + "window/showDocument": { |
| 170 | + "from": "server" |
| 171 | + }, |
| 172 | + "window/showMessageRequest": { |
| 173 | + "from": "server" |
| 174 | + }, |
| 175 | + "window/workDoneProgress/create": { |
| 176 | + "from": "server", |
| 177 | + "name": "Progress_Create" |
| 178 | + }, |
| 179 | + "workspace/applyEdit": { |
| 180 | + "from": "server" |
| 181 | + }, |
| 182 | + "workspace/codeLens/refresh": { |
| 183 | + "from": "server", |
| 184 | + "name": "Code_Lens_Refresh" |
| 185 | + }, |
| 186 | + "workspace/configuration": { |
| 187 | + "from": "server" |
| 188 | + }, |
| 189 | + "workspace/diagnostic": { |
| 190 | + "from": "client", |
| 191 | + "name": "Workspace_Diagnostic" |
| 192 | + }, |
| 193 | + "workspace/diagnostic/refresh": { |
| 194 | + "from": "server", |
| 195 | + "name": "Diagnostic_Refresh" |
| 196 | + }, |
| 197 | + // "workspace/executeCommand" |
| 198 | + "workspace/inlayHint/refresh": { |
| 199 | + "from": "server", |
| 200 | + "name": "Inlay_Refresh" |
| 201 | + }, |
| 202 | + "workspace/inlineValue/refresh": { |
| 203 | + "from": "server", |
| 204 | + "name": "Inline_Refresh" |
| 205 | + }, |
| 206 | + "workspace/semanticTokens/refresh": { |
| 207 | + "from": "server", |
| 208 | + "name": "Tokens_Refresh" |
| 209 | + }, |
| 210 | + // "workspace/symbol" |
| 211 | + "workspaceSymbol/resolve": { |
| 212 | + "from": "client", |
| 213 | + "name": "Symbol_Resolve" |
| 214 | + }, |
| 215 | + // "workspace/willCreateFiles" |
| 216 | + // "workspace/willDeleteFiles" |
| 217 | + // "workspace/willRenameFiles" |
| 218 | + "workspace/workspaceFolders": { |
| 219 | + "from": "server" |
| 220 | + } |
| 221 | + |
| 222 | +} |
0 commit comments