mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-31 23:38:45 +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,
|
config: CallInfoConfig,
|
||||||
label_offsets: bool,
|
label_offsets: bool,
|
||||||
) -> lsp_types::SignatureHelp {
|
) -> lsp_types::SignatureHelp {
|
||||||
let (label, parameters) = match (!config.params_only, label_offsets) {
|
let (label, parameters) = match (config.params_only, label_offsets) {
|
||||||
(concise, false) => {
|
(concise, false) => {
|
||||||
let params = call_info
|
let params = call_info
|
||||||
.parameter_labels()
|
.parameter_labels()
|
||||||
|
|
Loading…
Reference in a new issue