如何在 JupyterLab 的 CodeMirror 编辑器中添加标尺(竖线)?

How can I add a ruler (vertical line) to CodeMirror editors in JupyterLab?

我想在 80 个字符处添加标尺。我知道您可以 add rulers to CodeMirror, but I don't know if I'm supposed to place the corresponding javascript 在某处的文件中,或者在 JupyterLab 的 Advanced Settings Editor > CodeMirror > User Overides 部分,或者如果我应该一起做其他事情来让它工作.

我正在使用 JupyterLab 0.31.8

该功能在最近发布的 JupyterLab 1.0 中可用。

该功能现已在当前的 JupyterLab 1.0 alpha (see this PR) 中实现。

注:除了添加

{
    "codeCellConfig": {
        "rulers": [80]
    }
}

Notebook设置如上,还可以加上

{
    "editorConfig": {
        "rulers": [80]
    }
}

Text Editor 设置。