From 28b79bba5dde1ec3bfe227a8fac5f556f3fe250e Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Mon, 16 Jun 2025 13:44:43 -0400 Subject: [PATCH] AutoYADM commit: 2025-06-16 13:44:43 --- .config/fish/config.fish | 2 ++ .config/fish/functions/{gh.fish => _gh.fish} | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) rename .config/fish/functions/{gh.fish => _gh.fish} (71%) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 2dca25cf..7164c875 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -26,3 +26,5 @@ if status is-interactive end set -gx EDITOR kak +set -g task_complete_task no +set -g task_complete_id no diff --git a/.config/fish/functions/gh.fish b/.config/fish/functions/_gh.fish similarity index 71% rename from .config/fish/functions/gh.fish rename to .config/fish/functions/_gh.fish index 36c3d5ec..cff038f8 100644 --- a/.config/fish/functions/gh.fish +++ b/.config/fish/functions/_gh.fish @@ -1,4 +1,4 @@ -function gh --description "Create a new clean repo if arg is public or private" --wraps gh +function _gh --description "Create a new clean repo if arg is public or private" --wraps gh if test $argv[1] = public; or test $argv[1] = private # echo Creating new $argv[1] repo $argv[2] gh repo create $argv[2] --disable-issues --disable-wiki --$argv[1]