Use suggested method parameters in Visual Studio Code

前端 未结 1 1631
青春惊慌失措
青春惊慌失措 2021-01-12 08:19

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

相关标签:
1条回答
  • 2021-01-12 09:09

    Something like that exists for javascript & typescript files:

    settings.json Ctrl+,

    "typescript.suggest.completeFunctionCalls": true,
    "javascript.suggest.completeFunctionCalls": true,
    
    0 讨论(0)
提交回复
热议问题