Add emmet support for .pug files (#9811)

https://github.com/pugjs/pug formerly jade
This commit is contained in:
Hernan Y.Ke 2016-07-28 05:33:21 -04:00 committed by Erich Gamma
parent 4e09922a9c
commit 791972c75d

View file

@ -17,7 +17,7 @@ export class EditorAccessor implements emmet.Editor {
editor: ICommonCodeEditor;
private _hasMadeEdits: boolean;
emmetSupportedModes = ['html', 'razor', 'css', 'less', 'sass', 'scss', 'stylus', 'xml', 'xsl', 'jade', 'handlebars', 'ejs', 'hbs', 'jsx', 'tsx', 'erb', 'php', 'twig'];
emmetSupportedModes = ['html', 'razor', 'css', 'less', 'sass', 'scss', 'stylus', 'xml', 'xsl', 'jade', 'pug', 'handlebars', 'ejs', 'hbs', 'jsx', 'tsx', 'erb', 'php', 'twig'];
constructor(editor: ICommonCodeEditor) {
this.editor = editor;