Feature: #102790 - Line wrapping option for code editor
See forge#102790
Description
A new TCA appearance option line has been added for the
code render type. When enabled, long lines are wrapped inside
the editor instead of requiring horizontal scrolling.
Example:
'config' => [
'type' => 'text',
'renderType' => 'codeEditor',
'format' => 'html',
'appearance' => [
'lineWrapping' => true,
],
],
Copied!
Impact
Code editor fields can now be configured to wrap long lines by setting
line in the appearance array.