mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
Enable new emmet by default, add toggle comment feature
This commit is contained in:
@@ -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.')
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user