简体   繁体   English

ace编辑器中是否有避免水平滚动条的选项?

[英]Is there an option in ace editor to avoid horizontal scroll bar?

ace编辑器中如果文本太长,出现水平滚动条,ace编辑器中是否有选项,如果文本太长,它会自动分成多行。

Add wrap: 1 in the options在选项中添加wrap: 1

editor = ace.edit("editor", {
  wrap: 1
})

Yes, use wrap: true option.是的,使用wrap: true选项。

 <script src=https://ajaxorg.github.io/ace-builds/src/ace.js></script> <div id=editor style="height:90vh"></div> <script> editor = ace.edit("editor", { wrap: true, value: "very long line ".repeat(120) }) </script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM