From: Shane Jaroch Date: Thu, 8 Jan 2026 23:05:13 +0000 (-0500) Subject: wip X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=ff2d9b94c54b2f3d8e1b7c34803e4d1ec0c646cb;p=gamesguru%2Fgit-remote-gcrypt.git wip --- diff --git a/completions/bash/git-remote-gcrypt b/completions/bash/git-remote-gcrypt index 96f4b04..d8b5eb5 100644 --- a/completions/bash/git-remote-gcrypt +++ b/completions/bash/git-remote-gcrypt @@ -6,7 +6,7 @@ _git_remote_gcrypt() { COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD - 1]}" - opts="-h --help -v --version --check" + opts="-h --help -v --version" commands="check clean" # 1. First argument: complete commands and global options diff --git a/completions/fish/git-remote-gcrypt.fish b/completions/fish/git-remote-gcrypt.fish index 48bc49d..5cd48a5 100644 --- a/completions/fish/git-remote-gcrypt.fish +++ b/completions/fish/git-remote-gcrypt.fish @@ -3,7 +3,6 @@ complete -c git-remote-gcrypt -s h -l help -d 'Show help message' complete -c git-remote-gcrypt -s v -l version -d 'Show version information' -complete -c git-remote-gcrypt -l check -d '(Legacy) Check if URL is a gcrypt repository' -r -F # Subcommands complete -c git-remote-gcrypt -f -n "not __fish_seen_subcommand_from check clean" -a 'check' -d 'Check if URL is a gcrypt repository' diff --git a/completions/templates/bash.in b/completions/templates/bash.in index 5b761d8..b5d8157 100644 --- a/completions/templates/bash.in +++ b/completions/templates/bash.in @@ -6,7 +6,7 @@ _git_remote_gcrypt() { COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD - 1]}" - opts="-h --help -v --version --check" + opts="-h --help -v --version" commands="{commands}" # 1. First argument: complete commands and global options diff --git a/completions/templates/fish.in b/completions/templates/fish.in index f08a59e..c3333a1 100644 --- a/completions/templates/fish.in +++ b/completions/templates/fish.in @@ -3,7 +3,6 @@ complete -c git-remote-gcrypt -s h -l help -d 'Show help message' complete -c git-remote-gcrypt -s v -l version -d 'Show version information' -complete -c git-remote-gcrypt -l check -d '(Legacy) Check if URL is a gcrypt repository' -r -F # Subcommands complete -c git-remote-gcrypt -f -n "not __fish_seen_subcommand_from {not_sc_list}" -a 'check' -d 'Check if URL is a gcrypt repository' diff --git a/completions/templates/zsh.in b/completions/templates/zsh.in index 227920b..96f3ad2 100644 --- a/completions/templates/zsh.in +++ b/completions/templates/zsh.in @@ -7,7 +7,6 @@ _git_remote_gcrypt() { args=( '(- *)'{-h,--help}'[show help message]' '(- *)'{-v,--version}'[show version information]' - '--check[check if URL is a gcrypt repository]:URL:_files' '1:command:({commands})' '*::subcommand arguments:->args' ) diff --git a/completions/zsh/_git-remote-gcrypt b/completions/zsh/_git-remote-gcrypt index e49259b..3103307 100644 --- a/completions/zsh/_git-remote-gcrypt +++ b/completions/zsh/_git-remote-gcrypt @@ -7,7 +7,6 @@ _git_remote_gcrypt() { args=( '(- *)'{-h,--help}'[show help message]' '(- *)'{-v,--version}'[show version information]' - '--check[check if URL is a gcrypt repository]:URL:_files' '1:command:(check clean)' '*::subcommand arguments:->args' )