Answers for "create custom snippet vscode"

2

create custom snippet vscode

/*To create or edit your own snippets, select User Snippets 
under File > Preferences > User Snippets (Code > Preferences on macOS), 
and then select the language for which the snippets should appear*/

// Snippets are written in JSON Example:
{
	"Your Snippet Name": {
      "prefix": "ysn",
      "body": [
          "//Here you type all the code that should appear",
          "//Separating each line",
          "//Remember to add tabs with \t"
      ]
    }
}
Posted by: Guest on August-05-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language