alfred-tableplus
alfred-tableplus copied to clipboard
[Feature Request] Open connection is existing window
Does TablePlus have the option to open a connection in the current window? I used the following script to merge all connections into the same window, but it seems excessive if you plan on having more than a single window open.
on alfred_script(q)
tell application "TablePlus"
activate
tell application "System Events"
tell process "TablePlus"
click menu item "Merge All Windows" of menu "Window" of menu bar 1
end tell
end tell
end tell
end alfred_script