Welcome to mirror list, hosted at ThFree Co, Russian Federation.

editor_file_template_ext.js « editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5474318447c85b6fbadb0bd903aea2935e793c4 (plain)
1
2
3
4
5
6
7
8
import { Position } from 'monaco-editor';
import { EditorLiteExtension } from './editor_lite_extension_base';

export class FileTemplateExtension extends EditorLiteExtension {
  navigateFileStart() {
    this.setPosition(new Position(1, 1));
  }
}