Include recent emmet preferences in settings suggestions Fixes #35676

This commit is contained in:
Ramya Achutha Rao 2017-10-11 10:26:15 -07:00
parent 11b4f3d873
commit fd77f04352
2 changed files with 31 additions and 1 deletions

View file

@ -130,6 +130,31 @@
"type": "string",
"default": " ",
"description": "%emmetPreferencesStylusBetween%"
},
"bem.elementSeparator": {
"type": "string",
"default": "__",
"description": "%emmetPreferencesBemElementSeparator%"
},
"bem.modifierSeparator": {
"type": "string",
"default": "_",
"description": "%emmetPreferencesBemModifierSeparator%"
},
"filter.commentBefore": {
"type": "string",
"default": "",
"description": "%emmetPreferencesFilterCommentBefore%"
},
"filter.commentAfter": {
"type": "string",
"default": "\n<!-- /[#ID][.CLASS] -->",
"description": "%emmetPreferencesFilterCommentAfter%"
},
"filter.commentTrigger": {
"type": "array",
"default": ["id", "class"],
"description": "%emmetPreferencesFilterCommentTrigger%"
}
}
},

View file

@ -39,5 +39,10 @@
"emmetPreferencesCssBetween": "Symbol to be placed at the between CSS property and value when expanding CSS abbreviations",
"emmetPreferencesSassBetween": "Symbol to be placed at the between CSS property and value when expanding CSS abbreviations in Sass files",
"emmetPreferencesStylusBetween": "Symbol to be placed at the between CSS property and value when expanding CSS abbreviations in Stylus files",
"emmetShowSuggestionsAsSnippets": "If true, then emmet suggestions will show up as snippets allowing you to order them as per editor.snippetSuggestions setting."
"emmetShowSuggestionsAsSnippets": "If true, then emmet suggestions will show up as snippets allowing you to order them as per editor.snippetSuggestions setting.",
"emmetPreferencesBemElementSeparator": "Element separator used for classes when using the bem filter",
"emmetPreferencesBemModifierSeparator": "Modifer separator used for classes when using the bem filter",
"emmetPreferencesFilterCommentBefore": "A definition of comment that should be placed before after element when comment filter is applied.",
"emmetPreferencesFilterCommentAfter": "A definition of comment that should be placed before matched element when comment filter is applied.",
"emmetPreferencesFilterCommentTrigger": "A comma-separated list of attribute names that should exist in abbreviation for the comment filter to be applied"
}