Skip to content

Commit

Permalink
Fix inverted signature help setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Schievink committed May 10, 2022
1 parent 254bfdd commit 92e56e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rust-analyzer/src/to_proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 92e56e0

Please sign in to comment.