diff --git a/res/completions/arch-update.bash b/res/completions/arch-update.bash index 812d63d..d8ba7c8 100644 --- a/res/completions/arch-update.bash +++ b/res/completions/arch-update.bash @@ -2,6 +2,7 @@ _arch-update() { local arg="${2}" local -a opts opts=('-c --check + -l --list -n --news -h --help -V --version') diff --git a/res/completions/arch-update.fish b/res/completions/arch-update.fish index 2aba1dd..1e67bdc 100644 --- a/res/completions/arch-update.fish +++ b/res/completions/arch-update.fish @@ -1,6 +1,7 @@ complete -c arch-update -f complete -c arch-update -s c -l check -d 'Check for available updates' +complete -c arch-update -s l -l list -d 'Display the list of pending updates' complete -c arch-update -s n -l news -d 'Display latest Arch news' complete -c arch-update -s h -l help -d 'Display the help message' complete -c arch-update -s V -l version -d 'Display version information' diff --git a/res/completions/arch-update.zsh b/res/completions/arch-update.zsh index f7df2c4..69d264a 100644 --- a/res/completions/arch-update.zsh +++ b/res/completions/arch-update.zsh @@ -3,6 +3,7 @@ local -a opts opts=( {-c,--check}'[Check for available updates]' + {-l,--list}'[Display the list of pending updates]' {-n,--news}'[Display latest Arch news]' {-h,--help}'[Display the help message]' {-V,--version}'[Display version information]'