In ace editor if the text is too long, a horizontal scroll bar is appearing, is there an option in ace editor, if text is too long it automatically breaks in multiple lines.
In ace editor if the text is too long, a horizontal scroll bar is appearing, is there an option in ace editor, if text is too long it automatically breaks in multiple lines.
Share Improve this question asked Jul 2, 2019 at 12:22 ranjeet kumarranjeet kumar 2713 silver badges10 bronze badges2 Answers
Reset to default 7Yes, use wrap: true
option.
<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>
Add wrap: 1
in the options
editor = ace.edit("editor", {
wrap: 1
})