Search code examples
ace-editor

ACE editor displaying a line


While using ACE editor I've observed that a mysterious line is being displayed at the center of the editor. How do i fix this?

enter image description here


Solution

  • That line is called as Print Margin, include

    editor.setShowPrintMargin(false);
    

    in your code.