I use Sublime Text in my job, mostly for marking up and correcting release notes for posting. Up through Build 3095, I was able to capitalize the first letter of a line by using the regex find expression
^(.)
and using the regex replace expression
\U\1
With the release of 3098, \U no longer does the job. So if \U won’t do it, who will? And how?
TIA,
JWDriskell