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.
1 parent 99e23ae commit eb2e521Copy full SHA for eb2e521
src/sourcekit-lsp/extensions/SymbolInfoRequest.ts
@@ -150,7 +150,7 @@ export interface SymbolDetails {
150
* any additional client or server capabilities to use.
151
*/
152
export namespace SymbolInfoRequest {
153
- export const method = "textDocument/documentSymbol" as const;
+ export const method = "textDocument/symbolInfo" as const;
154
export const messageDirection: MessageDirection = MessageDirection.clientToServer;
155
- export const type = new RequestType<SymbolInfoParams, SymbolDetails, never>(method);
+ export const type = new RequestType<SymbolInfoParams, SymbolDetails[], never>(method);
156
}
0 commit comments