chore(fish): add description to functions

This commit is contained in:
Stefan Imhoff
2023-04-14 07:33:29 +02:00
parent 565ebd869d
commit a90b231360
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
function copilot_gh-assist
function copilot_gh-assist --description "GitHub Copilot gh assist"
set TMPFILE (mktemp)
trap 'rm -f $TMPFILE' EXIT
if github-copilot-cli gh-assist $argv --shellout $TMPFILE

View File

@@ -1,4 +1,4 @@
function copilot_git-assist
function copilot_git-assist --description "GitHub Copilot git assist"
set TMPFILE (mktemp)
trap 'rm -f $TMPFILE' EXIT
if github-copilot-cli git-assist $argv --shellout $TMPFILE

View File

@@ -1,4 +1,4 @@
function copilot_what-the-shell
function copilot_what-the-shell --description "GitHub Copilot what the shell"
set TMPFILE (mktemp)
trap 'rm -f $TMPFILE' EXIT
if github-copilot-cli what-the-shell $argv --shellout $TMPFILE