Appending (and not replacing) the clipboard’s contents
Ever want to do a series of Copies and have them append to, and not replace, the current clipboard?
In the past I’ve Copied my content, Pasted into the Scratchpad, gone back to my content and copied again. (Or I’ve used the “Append Selection To BBEdit Scratchpad” service).
There is a better way, built into BBEdit:
tell application "BBEdit"
extended copy selection with appending to clipboard
end tell
Copy this script into AppleScript Editor, save it in your BBEdit Script’s folder, and set a keyboard shortcut for it.
You could use this to quickly append just the results of a Find All command to the clipboard, then operate on the results later.