Skip to content

Commit

Permalink
chore: schema
Browse files Browse the repository at this point in the history
related #256
  • Loading branch information
fannheyward committed May 19, 2021
1 parent ed298b4 commit a1b7e16
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,32 @@
"items": {
"type": "string"
}
},
"rust-analyzer.workspace.symbol.search.scope": {
"markdownDescription": "Workspace symbol search scope.",
"default": "workspace",
"type": "string",
"enum": [
"workspace",
"workspace_and_dependencies"
],
"enumDescriptions": [
"Search in current workspace only",
"Search in current workspace and dependencies"
]
},
"rust-analyzer.workspace.symbol.search.kind": {
"markdownDescription": "Workspace symbol search kind.",
"default": "only_types",
"type": "string",
"enum": [
"only_types",
"all_symbols"
],
"enumDescriptions": [
"Search for types only",
"Search for all symbols kinds"
]
}
}
},
Expand Down

0 comments on commit a1b7e16

Please sign in to comment.