From 3701ebe311ee4c6441a081123b56927501f2570e Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 1 Feb 2018 15:35:10 +0100 Subject: [PATCH] fix #42534 --- .../parts/snippets/electron-browser/configureSnippets.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/parts/snippets/electron-browser/configureSnippets.ts b/src/vs/workbench/parts/snippets/electron-browser/configureSnippets.ts index 61b1ee57339..46cacc7d9aa 100644 --- a/src/vs/workbench/parts/snippets/electron-browser/configureSnippets.ts +++ b/src/vs/workbench/parts/snippets/electron-browser/configureSnippets.ts @@ -130,9 +130,10 @@ async function createGlobalSnippetFile(envService: IEnvironmentService, windowSe } await writeFile(path, [ '{', - '\t// Each snippet is defined under a snippet name and has a scope, prefix, body and ', - '\t// description. The scope defines in watch languages the snippet is applicable. The prefix is what is ', - '\t// used to trigger the snippet and the body will be expanded and inserted.Possible variables are: ', + '\t// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and ', + '\t// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope ', + '\t// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is ', + '\t// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: ', '\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. ', '\t// Placeholders with the same ids are connected.', '\t// Example:', -- GitLab