diff options
author | Ayush Agarwal <ayush@fastmail.in> | 2022-02-19 01:21:26 +0530 |
---|---|---|
committer | Ayush Agarwal <ayushnix@fastmail.com> | 2022-02-19 22:48:32 +0530 |
commit | d635587c4982986318c97cff977bc6104a365c4f (patch) | |
tree | dbe51d5b2b3d156d407e94221574924b62b6be78 /completion/tessen.bash-completion | |
parent | 759f29453a707260193b7d650a167d2657d11b74 (diff) |
feat: update completion for bash and fish
Diffstat (limited to 'completion/tessen.bash-completion')
-rw-r--r-- | completion/tessen.bash-completion | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/completion/tessen.bash-completion b/completion/tessen.bash-completion index 8134417..5d61749 100644 --- a/completion/tessen.bash-completion +++ b/completion/tessen.bash-completion @@ -3,10 +3,10 @@ _tessen() { COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD - 1]}" - all_long_opts="--backend --action --help --version " - all_short_opts="-b -a -h -v " + all_long_opts="--pass --dmenu --action --help --version " + all_short_opts="-p -d -a -h -v " case "$prev" in - --backend | -b | --action | -a) + --pass | -p | --dmenu | -d | --action | -a) mapfile -t COMPREPLY < <(compgen -o bashdefault -o default -- "${cur}") return 0 ;; |