UNPKG

monaco-editor-core

Version:

A browser based code editor

63 lines (62 loc) 3.49 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __param = (this && this.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); } }; import { AbstractGotoLineQuickAccessProvider } from '../../../contrib/quickAccess/browser/gotoLineQuickAccess.js'; import { Registry } from '../../../../platform/registry/common/platform.js'; import { Extensions } from '../../../../platform/quickinput/common/quickAccess.js'; import { ICodeEditorService } from '../../../browser/services/codeEditorService.js'; import { GoToLineNLS } from '../../../common/standaloneStrings.js'; import { Event } from '../../../../base/common/event.js'; import { EditorAction, registerEditorAction } from '../../../browser/editorExtensions.js'; import { EditorContextKeys } from '../../../common/editorContextKeys.js'; import { IQuickInputService } from '../../../../platform/quickinput/common/quickInput.js'; let StandaloneGotoLineQuickAccessProvider = class StandaloneGotoLineQuickAccessProvider extends AbstractGotoLineQuickAccessProvider { constructor(editorService) { super(); this.editorService = editorService; this.onDidActiveTextEditorControlChange = Event.None; } get activeTextEditorControl() { return this.editorService.getFocusedCodeEditor() ?? undefined; } }; StandaloneGotoLineQuickAccessProvider = __decorate([ __param(0, ICodeEditorService) ], StandaloneGotoLineQuickAccessProvider); export { StandaloneGotoLineQuickAccessProvider }; export class GotoLineAction extends EditorAction { static { this.ID = 'editor.action.gotoLine'; } constructor() { super({ id: GotoLineAction.ID, label: GoToLineNLS.gotoLineActionLabel, alias: 'Go to Line/Column...', precondition: undefined, kbOpts: { kbExpr: EditorContextKeys.focus, primary: 2048 /* KeyMod.CtrlCmd */ | 37 /* KeyCode.KeyG */, mac: { primary: 256 /* KeyMod.WinCtrl */ | 37 /* KeyCode.KeyG */ }, weight: 100 /* KeybindingWeight.EditorContrib */ } }); } run(accessor) { accessor.get(IQuickInputService).quickAccess.show(StandaloneGotoLineQuickAccessProvider.PREFIX); } } registerEditorAction(GotoLineAction); Registry.as(Extensions.Quickaccess).registerQuickAccessProvider({ ctor: StandaloneGotoLineQuickAccessProvider, prefix: StandaloneGotoLineQuickAccessProvider.PREFIX, helpEntries: [{ description: GoToLineNLS.gotoLineActionLabel, commandId: GotoLineAction.ID }] });