浏览器中的 Microsoft Monaco Editor 获取行的值

Microsoft Monaco Editor in browser get value of line

我一直在使用基于浏览器的 Microsoft Monaco Editor 版本,我在 playground 中找不到任何文档或任何示例来告诉您如何在编辑器中获取特定行的值.

例如:

class Example {
    private m:number;

    public met(): string {
        return "Hello world!";
    }
}

第 2 行将是 private m:number;

您将如何获取该行甚至该行的一部分的值,然后使用代码更改它的值。我想将该操作放入键盘快捷键中。

我认为 monaco 中没有这样的内置功能,因为我没有找到它。但我正在使用以下代码这样做:

editor.addAction({
        id: 'some_id',
        label: 'label',
        keybindings: [monaco.KeyMod.CtrlCmd | monaco.KeyCode.KEY_C],
        run: function(ed) {
            var position = ed.getPosition();
            var text = ed.getValue(position);
            var splitedText=text.split("\n");
            var line = splitedText[position.lineNumber-1];

            // now you have current line
            // you can also get any other line
            // and do something with that line

            splitedText[position.lineNumber-1]= _newLineText_
            ed.setValue(splitedText.join("\n"));
            ed.setPosition(position); // to return the pointer to the a position before editing text

            return null;
        },
        enablement: {
            textFocus: true,
        }
    });

这种方法对小文件有好处,但是对大文件整个编辑器会重新高亮,这是个坏事。

获取一行内容其实很简单:IModel.getLineContent()

line = model.getLineContent(3);

请注意,使用 getLineContent() 时行号以 1 开头。

替换文本有点复杂,但您可以应用编辑操作:

applyEdits 不会将编辑添加到撤消堆栈,因此不鼓励这样做。然而,这三个都使用相同的接口进行实际更改:IIdentifiedSingleEditOperation 所以实际调用不会有太大差异,所以我将只显示 pushEditOperations():

model.pushEditOperations(
    [],
    [
        {
            forceMoveMarkers: true,
            identifier: "mychange",
            range: {
                startLineNumber: lineNo,
                endLineNumber: lineNo,
                startColumn: 1,
                endColumn: line.length + 1,
            },
            text: "this will be the new text there"
        },
    ],
    []
);

如果您想在摩纳哥操场上进行测试,我使用了以下代码(改编自 "Adding Actions" 示例):

var editor = monaco.editor.create(document.getElementById("container"), {
    value: [
        '',
        'class Example {',
        '\tprivate m:number;',
        '',
        '\tpublic met(): string {',
        '\t\treturn "Hello world!";',
        '\t}',
        '}'
    ].join('\n'),
    language: "typescript"
});
var model = editor.getModel();

editor.addAction({
    id: 'my-unique-id',
    label: 'Replace the second line',
    keybindings: [ monaco.KeyMod.CtrlCmd | monaco.KeyCode.F10 ],
    contextMenuGroupId: 'custom',
    contextMenuOrder: 1,
    run: function(ed) {
        var lineNo = 3;
        var line = model.getLineContent(lineNo);
        console.log("These were the contents of the second line before I replaced them:", line);
        model.pushEditOperations(
            [],
            [
                {
                    forceMoveMarkers: true,
                    identifier: "mychange",
                    range: {
                        startLineNumber: lineNo,
                        endLineNumber: lineNo,
                        startColumn: 1,
                        endColumn: line.length + 1,
                    },
                    text: "this will be the new text there"
                },
            ],
            []
        );
    }
});

在这种情况下,您可以 运行 通过以下方式进行操作:

  • Ctrl + F10
  • 在编辑器上通过 right-clicking 并选择 "Replace the second line"(至少在您没有隐藏编辑器上下文菜单的情况下)。