alfred-bear
alfred-bear copied to clipboard
Spike on how multi-word tags are going to work
trafficstars
My regex-fu is not quite strong enough to make this easy. Need to figure out how best to support multi-word tags without screwing everything up.
It looks like this is almost working (in your latest GitHub release). Its just that the url to bear needs UTF8 encoding (to replace spaces with %20). Happy to attach pull request, but it seems to work with two quick changes:
- Replaced the bash code following the
bstscript filter with:
query="{query}"
if [[ $query == ":t:"* ]]; then
printf "bear://x-callback-url/open-tag?name=%s" "${query:3}"
else
printf "bear://x-callback-url/open-note?id=%s" "${query:3}"
fi
- Fed the output of this into a new 'Open URL' block.
@robwalton Thanks a ton for the tip!