aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 48d12b35a..1743b374c 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -790,6 +790,32 @@
790 "type": "string" 790 "type": "string"
791 } 791 }
792 }, 792 },
793 "rust-analyzer.workspace.symbol.search.scope": {
794 "markdownDescription": "Workspace symbol search scope.",
795 "default": "workspace",
796 "type": "string",
797 "enum": [
798 "workspace",
799 "workspace_and_dependencies"
800 ],
801 "enumDescriptions": [
802 "Search in current workspace only",
803 "Search in current workspace and dependencies"
804 ]
805 },
806 "rust-analyzer.workspace.symbol.search.kind": {
807 "markdownDescription": "Workspace symbol search kind.",
808 "default": "only_types",
809 "type": "string",
810 "enum": [
811 "only_types",
812 "all_symbols"
813 ],
814 "enumDescriptions": [
815 "Search for types only",
816 "Search for all symbols kinds"
817 ]
818 },
793 "$generated-end": false 819 "$generated-end": false
794 } 820 }
795 }, 821 },