Fix inverted signature help setting

This commit is contained in:
Jonas Schievink 2022-05-10 16:54:13 +02:00
parent 254bfdd2c3
commit 92e56e0c70

View file

@ -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()