plugins.rustaceanvim.settings.server.default_settings.rust-analyzer.workspace.symbol.search.kind

Workspace symbol search kind.

Values:

  • only_types: Search for types only.
  • all_symbols: Search for all symbols kinds.

Type: null or one of “only_types”, “all_symbols”

Default: null

Plugin default: "only_types"

plugins.rustaceanvim.settings.server.default_settings.rust-analyzer.workspace.symbol.search.limit

Limits the number of items returned from a workspace symbol search (Defaults to 128). Some clients like vs-code issue new searches on result filtering and don’t require all results to be returned in the initial search. Other clients requires all results upfront and might require a higher limit.

Type: null or signed integer

Default: null

Plugin default: 128

plugins.rustaceanvim.settings.server.default_settings.rust-analyzer.workspace.symbol.search.scope

Workspace symbol search scope.

Values:

  • workspace: Search in current workspace only.
  • workspace_and_dependencies: Search in current workspace and dependencies.

Type: null or one of “workspace”, “workspace_and_dependencies”

Default: null

Plugin default: "workspace"