A missing functionality (if I'm not mistaken) is the ability to add a line.
Good use case would be that I want to add a 'feature'. For most of the code, a new line needs to be added similar to an existing feature.
One way to solve this would be to allow adding (\r)\n characters like
fastmod -m '(^[\s]*)(feature4\n)' '${1}${2}${1}feature5\n'
But \n is just printed raw as \+n
A missing functionality (if I'm not mistaken) is the ability to add a line.
Good use case would be that I want to add a 'feature'. For most of the code, a new line needs to be added similar to an existing feature.
One way to solve this would be to allow adding (\r)\n characters like
fastmod -m '(^[\s]*)(feature4\n)' '${1}${2}${1}feature5\n'But
\nis just printed raw as\+n