如何让 Ace 编辑器根据行数调整高度?
How do I make Ace editor resize its height accordingly to the number of rows?
如何配置 Ace 使其具有高度,以便所有行始终可见,而不是具有垂直滚动条?
基本上,相当于:
document.querySelector("textarea").oninput = function(){
this.rows = this.value.split(/\n/g).length;
};
我该怎么做?提前谢谢你。
使用 maxLines
选项 editor.setOption("maxLines", 1000)
。
如何配置 Ace 使其具有高度,以便所有行始终可见,而不是具有垂直滚动条?
基本上,相当于:
document.querySelector("textarea").oninput = function(){
this.rows = this.value.split(/\n/g).length;
};
我该怎么做?提前谢谢你。
使用 maxLines
选项 editor.setOption("maxLines", 1000)
。