标签: javascript cloud9-ide ace-editor
如何配置Ace以使其高度始终可见,而不是使用垂直滚动条?
基本上,相当于:
document.querySelector("textarea").oninput = function(){ this.rows = this.value.split(/\n/g).length; };
http://jsfiddle.net/obobjrf5/
我该怎么做?提前谢谢。
答案 0 :(得分:5)
使用maxLines选项editor.setOption("maxLines", 1000)。
maxLines
editor.setOption("maxLines", 1000)