VS Code Intellisense don't suggest snippet at first

隐身守侯 提交于 2019-12-03 04:07:01

问题


I want to use code snippets in VSCode. But when I type, for example, for in javascript file, the Intellisense doesn't suggest snippet "for-loop" - I need to manually scroll the dropdown and select it. Is there any way to make VSCode to suggest snippets at first? Thank you!

UPD: I have found the person with same problem, but he has no answers - link


回答1:


You need to use editor.snippetSuggestions config option with "top" value. Please, see Customizing IntelliSense article for more tips and tricks.




回答2:


There is one more way to deal with this issue by setting "editor.tabCompletion": true, that way whenever there is a snnipet available it will use it automatically without even opening the list by using tab twice.

  1. File > Preferences > Settings (Code > Preferences > Settings on Mac)
  2. open "Editor" menu on the left
  3. edit "editor.tabCompletion": true

more info: https://code.visualstudio.com/docs/editor/intellisense#_customizing-intellisense




回答3:


Now that VS Code mostly abstracted away the settings.json file, you can do the instructions shown by Kavu, with this bonus tip:

  • go to Preferences > Settings

  • find the Search settings text input, at the top

  • type in "snippet"

The setting should be at the top of the result set:



来源:https://stackoverflow.com/questions/37863609/vs-code-intellisense-dont-suggest-snippet-at-first

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!