diff options
author | Michael Muré <batolettre@gmail.com> | 2019-02-24 23:05:03 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-03-01 22:52:54 +0100 |
commit | c235d89d36500e58e3bcadda94e9cab06023dd55 (patch) | |
tree | c2ee84316886cca3e439dbc12f64d6a06ddd7c18 /misc | |
parent | 46beb4b886761ff69abe2ce45c2498a4fafe50d9 (diff) | |
download | git-bug-c235d89d36500e58e3bcadda94e9cab06023dd55.tar.gz |
commands: show the last modification time in "user"
Diffstat (limited to 'misc')
-rw-r--r-- | misc/bash_completion/git-bug | 3 | ||||
-rw-r--r-- | misc/zsh_completion/git-bug | 18 |
2 files changed, 9 insertions, 12 deletions
diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug index c83d33ae..a0ac545c 100644 --- a/misc/bash_completion/git-bug +++ b/misc/bash_completion/git-bug @@ -853,9 +853,6 @@ _git-bug_user_ls() flags_with_completion=() flags_completion=() - flags+=("--verbose") - flags+=("-v") - local_nonpersistent_flags+=("--verbose") must_have_one_flag=() must_have_one_noun=() diff --git a/misc/zsh_completion/git-bug b/misc/zsh_completion/git-bug index 232cd3c1..9f7e84dc 100644 --- a/misc/zsh_completion/git-bug +++ b/misc/zsh_completion/git-bug @@ -17,15 +17,6 @@ case $state in ;; level2) case $words[2] in - bridge) - _arguments '2: :(configure pull rm)' - ;; - comment) - _arguments '2: :(add)' - ;; - label) - _arguments '2: :(add rm)' - ;; status) _arguments '2: :(close open)' ;; @@ -35,6 +26,15 @@ case $state in user) _arguments '2: :(adopt create ls)' ;; + bridge) + _arguments '2: :(configure pull rm)' + ;; + comment) + _arguments '2: :(add)' + ;; + label) + _arguments '2: :(add rm)' + ;; *) _arguments '*: :_files' ;; |