mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-30 20:25:40 +01:00
Disable encode/decode actions, Fixes #8603
This commit is contained in:
@@ -24,7 +24,7 @@ import './actions/updateImageSize';
|
||||
import './actions/evaluateMath';
|
||||
import './actions/incrementDecrement';
|
||||
import './actions/reflectCssValue';
|
||||
import './actions/base64';
|
||||
// import './actions/base64'; // disabled - we will revisit the implementation
|
||||
import './actions/updateTag';
|
||||
|
||||
// Configuration: emmet
|
||||
|
||||
@@ -43,10 +43,8 @@ export abstract class EmmetEditorAction extends EditorAction {
|
||||
}
|
||||
}
|
||||
let syntaxProfile = this.configurationService.getConfiguration<IEmmetConfiguration>().emmet.syntaxProfiles;
|
||||
if (Object.keys(syntaxProfile).length !== 0) {
|
||||
_emmet.profile.reset();
|
||||
_emmet.loadProfiles(syntaxProfile);
|
||||
}
|
||||
_emmet.profile.reset();
|
||||
_emmet.loadProfiles(syntaxProfile);
|
||||
}
|
||||
|
||||
private resetEmmetPreferences(_emmet: typeof emmet) {
|
||||
|
||||
Reference in New Issue
Block a user