Skip to content

Commit 92e56e0

Browse files
author
Jonas Schievink
committed
Fix inverted signature help setting
1 parent 254bfdd commit 92e56e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/rust-analyzer/src/to_proto.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ pub(crate) fn signature_help(
341341
config: CallInfoConfig,
342342
label_offsets: bool,
343343
) -> lsp_types::SignatureHelp {
344-
let (label, parameters) = match (!config.params_only, label_offsets) {
344+
let (label, parameters) = match (config.params_only, label_offsets) {
345345
(concise, false) => {
346346
let params = call_info
347347
.parameter_labels()

0 commit comments

Comments
 (0)