mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 14:03:35 +00:00
Fix inverted signature help setting
This commit is contained in:
parent
254bfdd2c3
commit
92e56e0c70
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue