From df6dfc8579380549aca02b4e10da87cc3c024aec Mon Sep 17 00:00:00 2001 From: Mikkel Svartveit Date: Wed, 15 Mar 2023 18:40:41 +0100 Subject: [PATCH] Add ghid function to fish --- .config/fish/config.fish | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index fdb44ed..e543714 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -15,6 +15,10 @@ abbr ghv "gh repo view --web" abbr pr "gh pr checkout" abbr prc "gh pr create --web" +function ghid + gh issue develop $argv[1] --checkout --name $argv[2] +end + # Print the directory of the top-most Finder window function pfd bass "echo \"`osascript -e 'tell application \"Finder\" to POSIX path of (insertion location as alias)' end tell`\""