ohmyzsh/plugins/lighthouse/lighthouse.plugin.zsh

13 lines
305 B
Bash
Raw Normal View History

open_lighthouse_ticket () {
if [ ! -f .lighthouse-url ]; then
2010-11-02 11:26:49 +00:00
echo "There is no .lighthouse-url file in the current directory..."
2019-03-24 10:29:35 +00:00
return 0
fi
2019-03-24 10:29:35 +00:00
lighthouse_url=$(cat .lighthouse-url)
echo "Opening ticket #$1"
open_command "$lighthouse_url/tickets/$1"
}
2010-11-02 11:26:49 +00:00
alias lho='open_lighthouse_ticket'