diff options
author | Michael Davis | 2022-08-04 04:05:52 +0000 |
---|---|---|
committer | GitHub | 2022-08-04 04:05:52 +0000 |
commit | 5d33dbacac3564c50b9f3a74cfef6a956c35dd80 (patch) | |
tree | 21f1a0709bdf9d8f11765f42651af9c7bae8817e /contrib/completion/hx.bash | |
parent | 219d2c25156a496ed2923d4cef256352bb1302e5 (diff) |
add a CLI flag for specifying config file location (#2666)
Diffstat (limited to 'contrib/completion/hx.bash')
-rw-r--r-- | contrib/completion/hx.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/hx.bash b/contrib/completion/hx.bash index 87c34028..8a2d9777 100644 --- a/contrib/completion/hx.bash +++ b/contrib/completion/hx.bash @@ -16,7 +16,7 @@ _hx() { COMPREPLY=($(compgen -W "$languages" -- $2)) ;; *) - COMPREPLY=($(compgen -fd -W "-h --help --tutor -V --version -v -vv -vvv --health -g --grammar --vsplit --hsplit" -- $2)) + COMPREPLY=($(compgen -fd -W "-h --help --tutor -V --version -v -vv -vvv --health -g --grammar --vsplit --hsplit -c --config" -- $2)) ;; esac } && complete -F _hx hx |