diff options
author | Benedikt Müller | 2022-09-20 12:35:00 +0000 |
---|---|---|
committer | GitHub | 2022-09-20 12:35:00 +0000 |
commit | 5467c65f8224049405498d65f54c3e3f8e4ec6c3 (patch) | |
tree | f72348bef383d58b3388d71239677e93711bd8b0 /contrib | |
parent | 385ccdfc9c4f04cbe33c7cfdd668a1f694b6d870 (diff) |
fix fish completions for --config & --log (#3912)
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/completion/hx.fish | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/completion/hx.fish b/contrib/completion/hx.fish index 71c74ab0..11977605 100644 --- a/contrib/completion/hx.fish +++ b/contrib/completion/hx.fish @@ -11,5 +11,5 @@ complete -c hx -s v -o vv -o vvv -d "Increases logging verbosity" complete -c hx -s V -l version -d "Prints version information" complete -c hx -l vsplit -d "Splits all given files vertically into different windows" complete -c hx -l hsplit -d "Splits all given files horizontally into different windows" -complete -c hx -s c -l config -d "Specifies a file to use for completion" -complete -c hx -s c -l log -d "Specifies a file to write log data into" +complete -c hx -s c -l config -r -d "Specifies a file to use for completion" +complete -c hx -l log -r -d "Specifies a file to write log data into" |