Bug Report
π Search Terms
parameter hints spread
π Version & Regression Information
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about
spread
β― Playground Link
Playground link with relevant code
π» Code
function myFn(a1: number, a2: number, a3: number) {
}
const firstTwoArgs = [1, 2] as const;
// Put your caret here and press ctrl/cmd + shift + space
// ||
// \/
myFn(...firstTwoArgs, );
π Actual behavior
a2 is highlighted:

π Expected behavior
a3 is highlighted
Related issues
This is not to be confused with #47327, which is about inlay hints rather than parameter hints. Though possibly the same fix might apply here as well.
Bug Report
π Search Terms
parameter hints spreadπ Version & Regression Information
spreadβ― Playground Link
Playground link with relevant code
π» Code
π Actual behavior
a2is highlighted:π Expected behavior
a3is highlightedRelated issues
This is not to be confused with #47327, which is about inlay hints rather than parameter hints. Though possibly the same fix might apply here as well.