Is there any way to remove the line numbers when using the ace editor?
Similar to removing the print margin as shown below?
editor.setShowPrintMargin
Updating the answer for version 1.4.7. You can set multiple options for ace editor like this, including showGutter
showGutter
this.editor.getEditor().setOptions({ enableBasicAutocompletion: true, enableSnippets: true, enableLiveAutocompletion: true, showGutter: false, maxLines: 20 });