Is there any way to turn on autocompletion with parentheses for arrow functions?
I already use javascript.suggest.completeFunctionCalls
, but it works only for regular functions.
function foo () {
}
const bar = () => {
}
foo(); // autocompleted ()
bar
they have different types
function foo() : void
const bar: () => void
the setting javascript.suggest.completeFunctionCalls
seems to work only for the function
type variables.
Place an issue request at the VSC (JavaScript extension) repo.
The same for Typescript files.