Skip to content

Instantly share code, notes, and snippets.

@brandonpittman
Created September 6, 2013 16:52
Show Gist options
  • Save brandonpittman/6466533 to your computer and use it in GitHub Desktop.
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.
tell application "Finder"
try
if get selection is not {} then set selection to {}
end try
end tell
@thomasaw
Copy link

On Mavericks, this works with list and icon view, but not column view.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment