Merge pull request #1788 from tbhaxor/lint/notify-send-completion

Lint/notify send completion
This commit is contained in:
Noah Gorny
2021-02-08 10:24:24 +02:00
committed by GitHub
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# shellcheck shell=bash
function __notify-send_completions() {
local curr=$(_get_cword)
local prev=$(_get_pword)
case $prev in
-u | --urgency)
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "low normal critical" -- "$curr"))
;;
*)
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "-? --help -u --urgency -t --expire-time -a --app-name -i --icon -c --category -h --hint -v --version" -- "$curr"))
;;
esac
}
complete -F __notify-send_completions notify-send