From 7cd17532d37130f23e94d7206f9ca0e68f427cb7 Mon Sep 17 00:00:00 2001 From: Ramya Achutha Rao Date: Fri, 30 Jun 2017 11:37:54 -0700 Subject: [PATCH] Updated comments on emmet settings --- .../parts/emmet/electron-browser/emmet.contribution.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/parts/emmet/electron-browser/emmet.contribution.ts b/src/vs/workbench/parts/emmet/electron-browser/emmet.contribution.ts index a56ce59bfd3..7f1e9a0e2ee 100644 --- a/src/vs/workbench/parts/emmet/electron-browser/emmet.contribution.ts +++ b/src/vs/workbench/parts/emmet/electron-browser/emmet.contribution.ts @@ -38,12 +38,12 @@ configurationRegistry.registerConfiguration({ 'emmet.triggerExpansionOnTab': { 'type': 'boolean', 'default': true, - 'description': nls.localize('triggerExpansionOnTab', "When enabled, emmet abbreviations are expanded when pressing TAB.") + 'description': nls.localize('triggerExpansionOnTab', "When enabled, emmet abbreviations are expanded when pressing TAB. Not applicable when emmet.useNewemmet is set to true.") }, 'emmet.preferences': { 'type': 'object', 'default': {}, - 'description': nls.localize('emmetPreferences', "Preferences used to modify behavior of some actions and resolvers of Emmet.") + 'description': nls.localize('emmetPreferences', "Preferences used to modify behavior of some actions and resolvers of Emmet. Not applicable when emmet.useNewemmet is set to true.") }, 'emmet.syntaxProfiles': { 'type': 'object', @@ -58,7 +58,7 @@ configurationRegistry.registerConfiguration({ 'emmet.extensionsPath': { 'type': 'string', 'default': null, - 'description': nls.localize('emmetExtensionsPath', 'Path to a folder containing emmet profiles, snippets and preferences') + 'description': nls.localize('emmetExtensionsPath', 'Path to a folder containing emmet profiles, snippets and preferences. Only profiles are honored from extensions path when emmet.useNewEmmet is set to true.') }, 'emmet.useNewEmmet': { 'type': 'boolean', -- GitLab