Skip to content

Commit acedad8

Browse files
committed
Minor
1 parent fc0c5df commit acedad8

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

crates/rust-analyzer/src/to_proto.rs

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -164,16 +164,6 @@ pub(crate) fn completion_item(
164164
additional_text_edits: Some(additional_text_edits),
165165
documentation: completion_item.documentation().map(documentation),
166166
deprecated: Some(completion_item.deprecated()),
167-
command: if completion_item.trigger_call_info() {
168-
let cmd = lsp_types::Command {
169-
title: "triggerParameterHints".into(),
170-
command: "editor.action.triggerParameterHints".into(),
171-
arguments: None,
172-
};
173-
Some(cmd)
174-
} else {
175-
None
176-
},
177167
..Default::default()
178168
};
179169

@@ -187,6 +177,14 @@ pub(crate) fn completion_item(
187177
res.tags = Some(vec![lsp_types::CompletionItemTag::Deprecated])
188178
}
189179

180+
if completion_item.trigger_call_info() {
181+
res.command = Some(lsp_types::Command {
182+
title: "triggerParameterHints".into(),
183+
command: "editor.action.triggerParameterHints".into(),
184+
arguments: None,
185+
});
186+
}
187+
190188
res.insert_text_format = Some(insert_text_format(completion_item.insert_text_format()));
191189

192190
res

0 commit comments

Comments
 (0)