diff options
| author | 2019-07-03 05:08:22 -0400 | |
|---|---|---|
| committer | 2019-07-03 05:08:22 -0400 | |
| commit | 1907d1037c2e5d98b8b55b563d7b0ce8cd4b408a (patch) | |
| tree | d704c14acf3b6dd56a482dc30c730aea6eafa734 /completion/pacstrap.bash | |
| parent | ad1be39ef1dc25f2fe3a2f41a931d8e734cbeb76 (diff) | |
| parent | 0d2edecb2be14c0ed92a33c7508358d648cd3d2f (diff) | |
Update upstream source from tag 'upstream/22'
Update to upstream version '22'
with Debian dir 76cf8a8f0842846234438b4170eb5cf1a638e775
Diffstat (limited to 'completion/pacstrap.bash')
| -rw-r--r-- | completion/pacstrap.bash | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/completion/pacstrap.bash b/completion/pacstrap.bash new file mode 100644 index 0000000..fb948f0 --- /dev/null +++ b/completion/pacstrap.bash @@ -0,0 +1,38 @@ +if ! declare -F _pacman_pkg > /dev/null; then + _completion_loader pacman +fi + +_pacstrap() { + compopt +o dirnames +o default + local cur prev opts + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + opts="-C -c -G -i -M -h" + + for i in "${COMP_WORDS[@]:1:COMP_CWORD-1}"; do + if [[ -d ${i} ]]; then + _pacman_pkg Slq + return 0 + fi + done + + case ${prev} in + -h) + return 0 + ;; + -C) + compopt -o default + return 0 + ;; + esac + + if [[ ${cur} = -* ]]; then + COMPREPLY=($(compgen -W "${opts}" -- "${cur}")) + return 0 + fi + + compopt -o dirnames +} + +complete -F _pacstrap pacstrap |
