Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

contrib(bashly): update completions.bash for qsv v0.127.0 #1776

Merged
merged 2 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
contrib(bashly): update completions.bash for qsv v0.127.0
[skip ci]
  • Loading branch information
rzmk committed Apr 25, 2024
commit d9f5a98d35654f9716158d765002a51b231c738d
2 changes: 1 addition & 1 deletion contrib/bashly/completions.bash
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ _qsv_completions() {
;;

*'frequency'*)
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -A file -W "$(_qsv_completions_filter "--asc --delimiter --help --ignore-case --jobs --limit --lmt-threshold --memcheck --no-headers --no-nulls --output --select --unq-limit -h")" -- "$cur" )
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -A file -W "$(_qsv_completions_filter "--asc --delimiter --help --ignore-case --jobs --limit --lmt-threshold --memcheck --no-headers --no-nulls --other-sorted --other-text --output --pct-dec-places --select --unq-limit -h")" -- "$cur" )
;;

*'partition'*)
Expand Down
5 changes: 5 additions & 0 deletions contrib/bashly/src/bashly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,11 @@ commands:
arg: arg
- long: --lmt-threshold
arg: arg
- long: --pct-dec-places
arg: arg
- long: --other-sorted
- long: --other-text
arg: arg
- long: --asc
- long: --no-nulls
- long: --ignore-case
Expand Down