有没有办法在 Ace Editor 中隐藏行号?

Is there a way to hide the line numbers in Ace Editor?

在使用ace编辑器时,有什么方法可以去掉行号吗?

类似于如下所示去除打印边距?

editor.setShowPrintMargin(false);

使用

editor.renderer.setShowGutter(true/false);

http://ace.c9.io/#VirtualRenderer.setShowGutter=&nav=api&api=virtual_renderer

编辑器选项 https://github.com/ajaxorg/ace/wiki/Configuring-Ace

如果您想隐藏行号但保留折叠小部件的间距:

editor.renderer.setOption('showLineNumbers', false);

正在更新版本 1.4.7 的答案。您可以像这样为 ace 编辑器设置多个选项,包括 showGutter

this.editor.getEditor().setOptions({
    enableBasicAutocompletion: true,
    enableSnippets: true,
    enableLiveAutocompletion: true,
    showGutter: false,
    maxLines: 20
  });