Created
August 27, 2020 04:19
-
-
Save aharpole/17cbf5dea3526c670529749f3d3b29f9 to your computer and use it in GitHub Desktop.
Alfred "open in TextMate" script filter
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
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