Unnamed repository; edit this file 'description' to name the repository.
Fix inverted signature help setting
| -rw-r--r-- | crates/rust-analyzer/src/to_proto.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/to_proto.rs b/crates/rust-analyzer/src/to_proto.rs index ffcea078ce..ea4ca5d82e 100644 --- a/crates/rust-analyzer/src/to_proto.rs +++ b/crates/rust-analyzer/src/to_proto.rs @@ -341,7 +341,7 @@ pub(crate) fn signature_help( config: CallInfoConfig, label_offsets: bool, ) -> lsp_types::SignatureHelp { - let (label, parameters) = match (!config.params_only, label_offsets) { + let (label, parameters) = match (config.params_only, label_offsets) { (concise, false) => { let params = call_info .parameter_labels() |