Skip to content

Commit 56a298b

Browse files
committed
Auto merge of #17346 - ChosenName:master, r=Veykril
Changed package.json so vscode extension settings have submenus There are a lot of options that are a part of rust-analyzer, sometimes it can be hard to find an option that you are looking for. To fix this I have put all configurations into categories based on their names. I have also changed the schema in `crates/rust-analyzer/src/config.rs` to reflect this. Currently for each generated entry the title is redeclared, this does function but I am prepared to change this if it is a problem.
2 parents b8e94dd + ca07bf2 commit 56a298b

File tree

3 files changed

+2237
-1415
lines changed

3 files changed

+2237
-1415
lines changed

src/tools/rust-analyzer/crates/rust-analyzer/src/config.rs

+15-6
Original file line numberDiff line numberDiff line change
@@ -2634,11 +2634,18 @@ fn schema(fields: &[SchemaField]) -> serde_json::Value {
26342634
.iter()
26352635
.map(|(field, ty, doc, default)| {
26362636
let name = field.replace('_', ".");
2637+
let category =
2638+
name.find('.').map(|end| String::from(&name[..end])).unwrap_or("general".into());
26372639
let name = format!("rust-analyzer.{name}");
26382640
let props = field_props(field, ty, doc, default);
2639-
(name, props)
2641+
serde_json::json!({
2642+
"title": category,
2643+
"properties": {
2644+
name: props
2645+
}
2646+
})
26402647
})
2641-
.collect::<serde_json::Map<_, _>>();
2648+
.collect::<Vec<_>>();
26422649
map.into()
26432650
}
26442651

@@ -3037,8 +3044,8 @@ mod tests {
30373044
let s = Config::json_schema();
30383045
let schema = format!("{s:#}");
30393046
let mut schema = schema
3040-
.trim_start_matches('{')
3041-
.trim_end_matches('}')
3047+
.trim_start_matches('[')
3048+
.trim_end_matches(']')
30423049
.replace(" ", " ")
30433050
.replace('\n', "\n ")
30443051
.trim_start_matches('\n')
@@ -3072,8 +3079,10 @@ mod tests {
30723079
let package_json_path = project_root().join("editors/code/package.json");
30733080
let mut package_json = fs::read_to_string(&package_json_path).unwrap();
30743081

3075-
let start_marker = " \"$generated-start\": {},\n";
3076-
let end_marker = " \"$generated-end\": {}\n";
3082+
let start_marker =
3083+
" {\n \"title\": \"$generated-start\"\n },\n";
3084+
let end_marker =
3085+
" {\n \"title\": \"$generated-end\"\n }\n";
30773086

30783087
let start = package_json.find(start_marker).unwrap() + start_marker.len();
30793088
let end = package_json.find(end_marker).unwrap();

0 commit comments

Comments
 (0)