Skip to content

Commit a1e85a2

Browse files
committed
fix: update all completions
1 parent 87e9130 commit a1e85a2

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

data/completions/oma.bash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ _oma() {
602602
return 0
603603
;;
604604
oma__files)
605-
opts="-h --bin --debug --no-color --follow-terminal-color --no-progress --no-check-dbus --sysroot --help [package]"
605+
opts="-h --bin --println --no-pager --debug --no-color --follow-terminal-color --no-progress --no-check-dbus --sysroot --help [package]"
606606
if [[ ${cur} == -* ]] ; then
607607
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
608608
return 0
@@ -690,7 +690,7 @@ _oma() {
690690
return 0
691691
;;
692692
oma__provides)
693-
opts="-h --bin --debug --no-color --follow-terminal-color --no-progress --no-check-dbus --sysroot --help [pattern]"
693+
opts="-h --println --no-pager --bin --debug --no-color --follow-terminal-color --no-progress --no-check-dbus --sysroot --help [pattern]"
694694
if [[ ${cur} == -* || ${COMP_CWORD} -eq 2 ]] ; then
695695
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
696696
return 0
@@ -781,7 +781,7 @@ _oma() {
781781
return 0
782782
;;
783783
oma__search)
784-
opts="-h --debug --no-color --follow-terminal-color --no-progress --no-check-dbus --sysroot --help"
784+
opts="-h --no-pager --debug --no-color --follow-terminal-color --no-progress --no-check-dbus --sysroot --help"
785785
if [[ ${cur} == -* || ${COMP_CWORD} -eq 2 ]] ; then
786786
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
787787
return 0

data/completions/oma.fish

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ complete -c oma -n "__fish_seen_subcommand_from show" -l no-progress -d 'Do not
116116
complete -c oma -n "__fish_seen_subcommand_from show" -l no-check-dbus
117117
complete -c oma -n "__fish_seen_subcommand_from show" -s h -l help -d 'Print help (see more with \'--help\')'
118118
complete -c oma -n "__fish_seen_subcommand_from search" -l sysroot -d 'Set sysroot target directory' -r
119+
complete -c oma -n "__fish_seen_subcommand_from search" -l no-pager -d 'Output result to stdout, not pager'
119120
complete -c oma -n "__fish_seen_subcommand_from search" -l debug -d 'Run oma with debug mode'
120121
complete -c oma -n "__fish_seen_subcommand_from search" -l no-color -d 'No color output to result'
121122
complete -c oma -n "__fish_seen_subcommand_from search" -l follow-terminal-color -d 'Output result with terminal theme color'
@@ -124,13 +125,15 @@ complete -c oma -n "__fish_seen_subcommand_from search" -l no-check-dbus
124125
complete -c oma -n "__fish_seen_subcommand_from search" -s h -l help -d 'Print help (see more with \'--help\')'
125126
complete -c oma -n "__fish_seen_subcommand_from files" -l sysroot -d 'Set sysroot target directory' -r
126127
complete -c oma -n "__fish_seen_subcommand_from files" -l bin -d 'Search binary of package(s)'
128+
complete -c oma -n "__fish_seen_subcommand_from files" -l no-pager -l println -d 'Set output mode as current println mode'
127129
complete -c oma -n "__fish_seen_subcommand_from files" -l debug -d 'Run oma with debug mode'
128130
complete -c oma -n "__fish_seen_subcommand_from files" -l no-color -d 'No color output to result'
129131
complete -c oma -n "__fish_seen_subcommand_from files" -l follow-terminal-color -d 'Output result with terminal theme color'
130132
complete -c oma -n "__fish_seen_subcommand_from files" -l no-progress -d 'Do not display progress bar'
131133
complete -c oma -n "__fish_seen_subcommand_from files" -l no-check-dbus
132134
complete -c oma -n "__fish_seen_subcommand_from files" -s h -l help -d 'Print help (see more with \'--help\')'
133135
complete -c oma -n "__fish_seen_subcommand_from provides" -l sysroot -d 'Set sysroot target directory' -r
136+
complete -c oma -n "__fish_seen_subcommand_from provides" -l no-pager -l println -d 'Set output mode as current println mode'
134137
complete -c oma -n "__fish_seen_subcommand_from provides" -l bin -d 'Search binary of package(s)'
135138
complete -c oma -n "__fish_seen_subcommand_from provides" -l debug -d 'Run oma with debug mode'
136139
complete -c oma -n "__fish_seen_subcommand_from provides" -l no-color -d 'No color output to result'

0 commit comments

Comments
 (0)