mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
feat: allow clients to feature detect symbol filtering
This commit is contained in:
parent
49a5d6a8d4
commit
1fd31f7f4c
@ -122,6 +122,7 @@ pub fn server_capabilities(client_caps: &ClientCapabilities) -> ServerCapabiliti
|
||||
"runnables": {
|
||||
"kinds": [ "cargo" ],
|
||||
},
|
||||
"workspaceSymbolScopeKindFiltering": true,
|
||||
})),
|
||||
}
|
||||
}
|
||||
|
@ -651,32 +651,36 @@ export const enum Direction {
|
||||
}
|
||||
```
|
||||
|
||||
## Lookup workspace symbol search scope and kind
|
||||
## Workspace Symbols Filtering
|
||||
|
||||
**Issue:** https://github.com/rust-analyzer/rust-analyzer/pull/7698
|
||||
|
||||
This request is sent from client to server to search for workspace symbols filtered by an
|
||||
optional search scope and / or an optional symbol kind.
|
||||
**Experimental Server Capability:** `{ "workspaceSymbolScopeKindFiltering": boolean }`
|
||||
|
||||
**Method:** `workspace/symbol`
|
||||
Extends the existing `workspace/symbol` request with ability to filter symbols by broad scope and kind of symbol.
|
||||
If this capability is set, `workspace/symbol` parameter gains two new optional fields:
|
||||
|
||||
**Request:** `WorkspaceSymbolParams`
|
||||
|
||||
**Response:** `SymbolInformation[] | null`
|
||||
|
||||
```typescript
|
||||
interface lsp_ext.WorkspaceSymbolParams extends WorkspaceSymbolParams {
|
||||
interface WorkspaceSymbolParams {
|
||||
/**
|
||||
* Return only the symbols defined in the specified scope.
|
||||
*/
|
||||
searchScope?: WorkspaceSymbolSearchScope;
|
||||
/**
|
||||
* Return only the symbols of specified kinds.
|
||||
*/
|
||||
searchKind?: WorkspaceSymbolSearchKind;
|
||||
...
|
||||
}
|
||||
|
||||
const enum WorkspaceSymbolSearchScope {
|
||||
Workspace = "Workspace",
|
||||
WorkspaceAndDependencies = "WorkspaceAndDependencies"
|
||||
Workspace = "workspace",
|
||||
WorkspaceAndDependencies = "workspaceAndDependencies"
|
||||
}
|
||||
|
||||
const enum WorkspaceSymbolSearchKind {
|
||||
OnlyTypes = "OnlyTypes",
|
||||
AllSymbols = "AllSymbols"
|
||||
OnlyTypes = "onlyTypes",
|
||||
AllSymbols = "allSymbols"
|
||||
}
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user