diff options
author | Michael Muré <batolettre@gmail.com> | 2019-03-03 15:23:20 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-03-03 15:23:20 +0100 |
commit | 408654514ea813933f45d383d949611d138084e1 (patch) | |
tree | b3d8db1596b7347fdcf39cfdc9614a3c09464b36 /misc | |
parent | 0e5550a27b7d9b8beb1418588ca5c9c12f4437c5 (diff) | |
download | git-bug-408654514ea813933f45d383d949611d138084e1.tar.gz |
cache: make the title filter case insensitive
Diffstat (limited to 'misc')
-rw-r--r-- | misc/bash_completion/git-bug | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug index a0ac545c..ec8c64ea 100644 --- a/misc/bash_completion/git-bug +++ b/misc/bash_completion/git-bug @@ -535,6 +535,9 @@ _git-bug_ls() flags+=("--label=") two_word_flags+=("-l") local_nonpersistent_flags+=("--label=") + flags+=("--title=") + two_word_flags+=("-t") + local_nonpersistent_flags+=("--title=") flags+=("--no=") two_word_flags+=("-n") local_nonpersistent_flags+=("--no=") |