I am looking for a tool that will allow me to select text anywhere that's editable within macOS, and with a keystroke add either single quotes, double quotes, brackets, parenthesis, asterisks, etc. (not all at once!) for example, to both ends of the selected text. Can BetterTouchTool do that?
ChatGPT? Sorry, I assumed that wasn't part of BetterTouchTool, really not interested. I am looking for an approach that will not leave my machine, without involvement of AI, neither local, nor remote.
There are many ways to achieve this, the most performant should be the predefined action "Transform & Replace Selection With Java Script":
This example would but the selection in double quote:
You can easily adapt the code for other transformations:
async (clipboardContentString) => {
return `"${clipboardContentString}"`
}
Thank you, that would work perfectly!



