Thanks for the many suggestions!
Update and solution: For my workflow, I have to copy numerous small bits
of text (2-5 words) from one file and paste with transformations to
another, so the best solution arose using the following (and attached)
AppleScripts and keyboard shortcuts.
Regards,
Zephyr
*tell* *application* "BBEdit"
*set the clipboard to* (*change case* *of* (*the clipboard*) making lower
case)
*set* theText *to* *the clipboard*
*set* AppleScript's text item delimiters *to* " "
*set* theTextItems *to* *text items* *of* theText
*set* AppleScript's text item delimiters *to* "_"
*set* theText *to* theTextItems *as* *string*
*set* AppleScript's text item delimiters *to* {""}
*set the clipboard to* theText
*paste*
*end* *tell*
*
*
*
*
*tell* *application* "BBEdit"
*set* theText *to* *the clipboard*
*set* AppleScript's text item delimiters *to* "_"
*set* theTextItems *to* *text items* *of* theText
*set* AppleScript's text item delimiters *to* " "
*set* theText *to* theTextItems *as* *string*
*set* AppleScript's text item delimiters *to* {""}
*set the clipboard to* theText
*set the clipboard to* (*change case* *of* (*the clipboard*) making capitalize
words)
*paste*
*end* *tell*
*
*
--
--
You received this message because you are subscribed to the
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
<http://groups.google.com/group/bbedit?hl=en>
If you have a feature request or would like to report a problem,
please email "[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>
---
You received this message because you are subscribed to the Google Groups
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.