monaco-editor-core
Version:
A browser based code editor
47 lines • 1.74 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { EditorAction, registerEditorAction } from '../../../browser/editorExtensions.js';
import { EditorZoom } from '../../../common/config/editorZoom.js';
import * as nls from '../../../../nls.js';
class EditorFontZoomIn extends EditorAction {
constructor() {
super({
id: 'editor.action.fontZoomIn',
label: nls.localize2(1054, "Increase Editor Font Size"),
precondition: undefined
});
}
run(accessor, editor) {
EditorZoom.setZoomLevel(EditorZoom.getZoomLevel() + 1);
}
}
class EditorFontZoomOut extends EditorAction {
constructor() {
super({
id: 'editor.action.fontZoomOut',
label: nls.localize2(1055, "Decrease Editor Font Size"),
precondition: undefined
});
}
run(accessor, editor) {
EditorZoom.setZoomLevel(EditorZoom.getZoomLevel() - 1);
}
}
class EditorFontZoomReset extends EditorAction {
constructor() {
super({
id: 'editor.action.fontZoomReset',
label: nls.localize2(1056, "Reset Editor Font Size"),
precondition: undefined
});
}
run(accessor, editor) {
EditorZoom.setZoomLevel(0);
}
}
registerEditorAction(EditorFontZoomIn);
registerEditorAction(EditorFontZoomOut);
registerEditorAction(EditorFontZoomReset);
//# sourceMappingURL=fontZoom.js.map