Is your feature request related to a problem? Please describe.
I want the text to automatically insert line \n breaks after a specified number of characters.
Describe the solution you'd like
I didn't find a recipe for this feature, if it's already there then I apologize!
Add a function to limit the number of characters to line breaks, providing parameters for the number of characters, and line breaks
Describe alternatives you've considered
At one time I had to use the regular expression .{x} -> $&\n, but that was too cumbersome.
Is your feature request related to a problem? Please describe.
I want the text to automatically insert line
\nbreaks after a specified number of characters.Describe the solution you'd like
I didn't find a recipe for this feature, if it's already there then I apologize!Add a function to limit the number of characters to line breaks, providing parameters for the number of characters, and line breaks
Describe alternatives you've considered
At one time I had to use the regular expression
.{x} -> $&\n, but that was too cumbersome.