You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix redundant inlay hints on property bindings (1.3.1) (#6)
* fix(inlay-hints): only show parameter hints on function call arguments
Inlay hints previously echoed the property name on every ui_binding,
which was redundant since the name is already visible in the source.
Now hints are only emitted for call-expression arguments whose callee
is in the known signature registry (Qt.rect, console.log, etc.),
showing the parameter name being filled in.
* docs: cut 1.3.1 with inlay hints fix