Eglot: fix signature precedence based on provenance (bug#74914)

* lisp/progmodes/eglot.el (eglot--sig-info): Reverse order of
activeParameter and sig-active.
This commit is contained in:
João Távora 2025-01-05 20:39:51 +00:00
parent 127fc98308
commit 04a8faef09

View file

@ -3426,7 +3426,7 @@ for which LSP on-type-formatting should be requested."
'font-lock-function-name-face))))
;; Now to the parameters
(cl-loop
with active-param = (or sig-active activeParameter)
with active-param = (or activeParameter sig-active)
for i from 0 for parameter across parameters do
(eglot--dbind ((ParameterInformation)
((:label parlabel))