From 0d2edecb2be14c0ed92a33c7508358d648cd3d2f Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Wed, 3 Jul 2019 05:08:20 -0400 Subject: New upstream version 22 --- completion/arch-chroot.bash | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 completion/arch-chroot.bash (limited to 'completion/arch-chroot.bash') diff --git a/completion/arch-chroot.bash b/completion/arch-chroot.bash new file mode 100644 index 0000000..37fbf7c --- /dev/null +++ b/completion/arch-chroot.bash @@ -0,0 +1,27 @@ +_arch_chroot() { + compopt +o dirnames + local cur prev opts + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + opts="-u -h" + + for i in "${COMP_WORDS[@]:1:COMP_CWORD-1}"; do + if [[ -d ${i} ]]; then + return 0 + fi + done + + if [[ ${prev} = -u ]]; then + _usergroup -u + return 0 + fi + + if [[ ${cur} = -* ]]; then + COMPREPLY=($(compgen -W "${opts}" -- "${cur}")) + return 0 + fi + compopt -o dirnames +} + +complete -F _arch_chroot arch-chroot -- cgit v1.2.3