15

我在 CodeMirror 中突出显示 HTML 代码行,我想添加一个锚点,将 CodeMirror 编辑器滚动到给定的行。

我可以通过setCursor方法滚动到 X 行。但我想在 CodeMirror 窗口中间有 X 行。我可以这样做吗?我研究了 API 和演示,但没有运气。

谢谢!

4

4 回答 4

14

这个应该工作:

var editor = CodeMirror.fromTextArea(...);

function jumpToLine(i) { 
    var t = editor.charCoords({line: i, ch: 0}, "local").top; 
    var middleHeight = editor.getScrollerElement().offsetHeight / 2; 
    editor.scrollTo(null, t - middleHeight - 5); 
} 
于 2014-05-09T12:14:06.023 回答
6

这很简单。

在里面:

var editor = CodeMirror.fromTextArea(...);

如果您希望稍后设置当前位置,您可以使用

editor.getScrollInfo();

它返回一个 JavaScript 对象:

{
  "left": 0,
  "top": 0,
  "height": 500,
  "width": 500,
  "clientHeight": 300,
  "clientWidth": 200
} 

现在您可以使用以下方法设置设置编辑器滚动位置:

editor.scrollTo(left,top);
于 2013-12-13T05:15:43.237 回答
3

你想要https://codemirror.net/doc/manual.html#scrollIntoView

注意应该做你想做的可选边距参数:

cm.scrollIntoView(what: {line, ch}|{left, top, right, bottom}|{from, to}|null, ?margin: number)

您的代码将类似于:

cm.scrollIntoView({line:50, char:5}, 200)
于 2017-11-24T12:29:40.097 回答
2

初始化:

var editor = CodeMirror.fromTextArea(...);

在编辑器中间显示一行的功能:

function jumpToLine(i) {

    // editor.getLineHandle does not help as it does not return the reference of line.
    editor.setCursor(i);
    window.setTimeout(function() {
       editor.setLineClass(i, null, "center-me");
       var line = $('.CodeMirror-lines .center-me');
       var h = line.parent();

       $('.CodeMirror-scroll').scrollTop(0).scrollTop(line.offset().top - $('.CodeMirror-scroll').offset().top - Math.round($('.CodeMirror-scroll').height()/2));
   }, 200);
}
于 2012-05-23T18:29:47.527 回答