Created
September 6, 2013 16:52
-
-
Save brandonpittman/6466533 to your computer and use it in GitHub Desktop.
An AppleScript to deselect the selection in Finder.app. Run it with ⌘⇧A with Keyboard Maestro or FastScripts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Finder" | |
try | |
if get selection is not {} then set selection to {} | |
end try | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On Mavericks, this works with list and icon view, but not column view.