I miss a general feature in UltraEdit: the possibility of automatically selecting a paragraph. I know it's a feature related to standard writing, not to code writing, but I am using the program for my needs and I would like to customize it as far as possible.
I have written a macro with this syntax but it's not perfect at all. Sometimes, the first character in the paragraph is not selected and sometimes the selection goes to the previous and the next carriage return. Any suggestion?
This is my poor macro:
InsertMode
ColumnModeOff
HexOff
UnixReOff
Find Up "^p"
Find RegExp "[a-z]"
EndSelect
StartSelect
Find Select "^p"
End of my macro. Thank you in advance.
I have written a macro with this syntax but it's not perfect at all. Sometimes, the first character in the paragraph is not selected and sometimes the selection goes to the previous and the next carriage return. Any suggestion?
This is my poor macro:
InsertMode
ColumnModeOff
HexOff
UnixReOff
Find Up "^p"
Find RegExp "[a-z]"
EndSelect
StartSelect
Find Select "^p"
End of my macro. Thank you in advance.