diff options
author | Michael Muré <batolettre@gmail.com> | 2022-08-23 15:02:41 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-08-23 15:09:31 +0200 |
commit | 8d11e620a3d663cf21a62910d0f3961a8aff4be1 (patch) | |
tree | 17dc3df82229eea5c3500e2bd8448060dc1ae849 /misc/completion/fish | |
parent | 5a70e8b3a2e0fe3d1a1dcd4c24bb6bf64633cb7f (diff) | |
download | git-bug-8d11e620a3d663cf21a62910d0f3961a8aff4be1.tar.gz |
webui: add a flag to log handling errors
Diffstat (limited to 'misc/completion/fish')
-rw-r--r-- | misc/completion/fish/git-bug | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/completion/fish/git-bug b/misc/completion/fish/git-bug index a3c2d008..c5ab1b42 100644 --- a/misc/completion/fish/git-bug +++ b/misc/completion/fish/git-bug @@ -18,7 +18,8 @@ function __git_bug_perform_completion __git_bug_debug "args: $args" __git_bug_debug "last arg: $lastArg" - set -l requestComp "$args[1] __complete $args[2..-1] $lastArg" + # Disable ActiveHelp which is not supported for fish shell + set -l requestComp "GIT_BUG_ACTIVE_HELP=0 $args[1] __complete $args[2..-1] $lastArg" __git_bug_debug "Calling $requestComp" set -l results (eval $requestComp 2> /dev/null) |