Disable encode/decode actions, Fixes #8603

This commit is contained in:
Erich Gamma
2016-07-01 12:07:26 +02:00
parent 82ca1dec46
commit 8186bf0ca7
2 changed files with 3 additions and 5 deletions
@@ -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) {