@theia/monaco
Version:
Theia - Monaco Extension
48 lines (43 loc) • 2.46 kB
text/typescript
// *****************************************************************************
// Copyright (C) 2021 SAP SE or an SAP affiliate company and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
import { QuickAccessContribution } from '@theia/core/lib/browser/quick-input';
import { injectable } from '@theia/core/shared/inversify';
import { ICodeEditor } from '@theia/monaco-editor-core/esm/vs/editor/browser/editorBrowser';
import { ICodeEditorService } from '@theia/monaco-editor-core/esm/vs/editor/browser/services/codeEditorService';
import { StandaloneGotoLineQuickAccessProvider } from '@theia/monaco-editor-core/esm/vs/editor/standalone/browser/quickAccess/standaloneGotoLineQuickAccess';
import { IQuickAccessRegistry, Extensions } from '@theia/monaco-editor-core/esm/vs/platform/quickinput/common/quickAccess';
import { Registry } from '@theia/monaco-editor-core/esm/vs/platform/registry/common/platform';
export class GotoLineQuickAccess extends StandaloneGotoLineQuickAccessProvider {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
constructor(...services: any[]);
constructor( private readonly service: ICodeEditorService) {
super(service);
}
override get activeTextEditorControl(): ICodeEditor | undefined {
return (this.service.getFocusedCodeEditor() || this.service.getActiveCodeEditor()) ?? undefined;
}
}
()
export class GotoLineQuickAccessContribution implements QuickAccessContribution {
registerQuickAccessProvider(): void {
Registry.as<IQuickAccessRegistry>(Extensions.Quickaccess).registerQuickAccessProvider({
ctor: GotoLineQuickAccess,
prefix: ':',
placeholder: '',
helpEntries: [{ description: 'Go to line' }]
});
}
}