Enable new emmet by default, add toggle comment feature

This commit is contained in:
Ramya Achutha Rao 2017-06-07 12:42:38 -07:00
parent 6ff1da8d30
commit 28709b648b
2 changed files with 3 additions and 2 deletions

View file

@ -62,7 +62,7 @@ configurationRegistry.registerConfiguration({
},
'emmet.useNewEmmet': {
'type': 'boolean',
'default': false,
'default': true,
'description': nls.localize('useNewEmmet', 'Try out the new emmet modules (which will eventually replace the old single emmet library) for all emmet features.')
}
}

View file

@ -249,7 +249,8 @@ export abstract class EmmetEditorAction extends EditorAction {
'editor.emmet.action.mergeLines': 'emmet.mergeLines',
'editor.emmet.action.selectPreviousItem': 'emmet.selectPrevItem',
'editor.emmet.action.selectNextItem': 'emmet.selectNextItem',
'editor.emmet.action.splitJoinTag': 'emmet.splitJoinTag'
'editor.emmet.action.splitJoinTag': 'emmet.splitJoinTag',
'editor.emmet.action.toggleComment': 'emmet.toggleComment'
};
protected emmetActionName: string;