Open chrisbro opened 7 years ago
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:
bst
script 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
2. Fed the output of this into a new 'Open URL' block.
@robwalton Thanks a ton for the tip!
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.