Issue
Visual Studio Code suggests the right parameters for well defined methods as you type them. Is there a way to take them over / insert them straight away? Doesn't feel right to write the parameters with their types by hand...
Solution
Something like that exists for javascript
& typescript
files:
settings.json Ctrl+,
"typescript.suggest.completeFunctionCalls": true,
"javascript.suggest.completeFunctionCalls": true,
Answered By - Alex
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.