From a90b231360ac3af4fa6171100c4bbc16e593f4b1 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 14 Apr 2023 07:33:29 +0200 Subject: [PATCH] chore(fish): add description to functions --- fish/functions/copilot_gh-assist.fish | 2 +- fish/functions/copilot_git-assist.fish | 2 +- fish/functions/copilot_what-the-shell.fish | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fish/functions/copilot_gh-assist.fish b/fish/functions/copilot_gh-assist.fish index 72d2627..1e95d6a 100644 --- a/fish/functions/copilot_gh-assist.fish +++ b/fish/functions/copilot_gh-assist.fish @@ -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 diff --git a/fish/functions/copilot_git-assist.fish b/fish/functions/copilot_git-assist.fish index f9549eb..18f00b4 100644 --- a/fish/functions/copilot_git-assist.fish +++ b/fish/functions/copilot_git-assist.fish @@ -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 diff --git a/fish/functions/copilot_what-the-shell.fish b/fish/functions/copilot_what-the-shell.fish index af0f172..6a7b283 100644 --- a/fish/functions/copilot_what-the-shell.fish +++ b/fish/functions/copilot_what-the-shell.fish @@ -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