Skip to content

Instantly share code, notes, and snippets.

@aharpole
Created August 27, 2020 04:19
Show Gist options
  • Save aharpole/17cbf5dea3526c670529749f3d3b29f9 to your computer and use it in GitHub Desktop.
Save aharpole/17cbf5dea3526c670529749f3d3b29f9 to your computer and use it in GitHub Desktop.
Alfred "open in TextMate" script filter
read folder <<< "{query}"
echo '<?xml version="1.0"?>'
echo '<items>'
cd ~/projects && ls -d *"$folder"* | xargs -I % echo '<item uid="fs_launch_%" arg="%" valid="yes" autocomplete="%"><title>%</title><subtitle>Open % in TextMate</subtitle><icon>icon.png</icon></item>'
echo '</items>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment