We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b746ec + a7a1a83 commit 37b01f9Copy full SHA for 37b01f9
crates/rust-analyzer/src/config/patch_old_style.rs
@@ -117,7 +117,7 @@ pub(super) fn patch_json_for_outdated_configs(json: &mut Value) {
117
) {
118
(Some(Value::Bool(true)), Some(Value::Bool(true))) => json!("fill_arguments"),
119
(Some(Value::Bool(true)), _) => json!("add_parentheses"),
120
- (Some(Value::Bool(false)), Some(Value::Bool(false))) => json!("add_parentheses"),
+ (Some(Value::Bool(false)), Some(Value::Bool(false))) => json!("none"),
121
(_, _) => return,
122
};
123
merge(json, json!({ "completion": { "callable": {"snippets": res }} }));
0 commit comments