diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-04-18 01:13:48 +0200 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-04-18 01:13:48 +0200 |
commit | f3360500ce1f46e10dfbf8dd898f5146eb3267ba (patch) | |
tree | 9d85e53d25378a0b95ca062e4b78e77407a8977c | |
parent | 606d15310a273da4a41b460b47ff3a4f5c54f3eb (diff) | |
download | mkinitcpio-f3360500ce1f46e10dfbf8dd898f5146eb3267ba.tar.gz mkinitcpio-f3360500ce1f46e10dfbf8dd898f5146eb3267ba.tar.xz |
bash-completion: align whitespace with rest of repo
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
-rw-r--r-- | bash-completion | 76 |
1 files changed, 38 insertions, 38 deletions
diff --git a/bash-completion b/bash-completion index 6329702..b7fc277 100644 --- a/bash-completion +++ b/bash-completion @@ -2,52 +2,52 @@ # mkinitcpio bash completion by Seblu <seblu@seblu.net> _lsinitcpio() { - local action cur - action="-a -h -n -v -x" - _get_comp_words_by_ref cur - case "$cur" in - -*) COMPREPLY=($(compgen -W "${action}" -- "$cur"));; - *) _filedir;; - esac + local action cur + action="-a -h -n -v -x" + _get_comp_words_by_ref cur + case "$cur" in + -*) COMPREPLY=($(compgen -W "${action}" -- "$cur"));; + *) _filedir;; + esac } _find_kernel_versions() { - local -a matches - local regex - - # add completions from kernels in /boot - regex="Linux kernel.*version" - while IFS=':' read -r file metadata; do - [[ $metadata =~ $regex ]] || continue - matches+=("$file") - done < <(file -e ascii /boot/*) - - # add completions based on kernel versions in /lib/modules - for dir in /lib/modules/*/kernel; do - dir=${dir%/kernel} - matches+=("${dir#/lib/modules/}") - done - - COMPREPLY=($(compgen -W "${matches[*]}" -- $cur)) + local -a matches + local regex + + # add completions from kernels in /boot + regex="Linux kernel.*version" + while IFS=':' read -r file metadata; do + [[ $metadata =~ $regex ]] || continue + matches+=("$file") + done < <(file -e ascii /boot/*) + + # add completions based on kernel versions in /lib/modules + for dir in /lib/modules/*/kernel; do + dir=${dir%/kernel} + matches+=("${dir#/lib/modules/}") + done + + COMPREPLY=($(compgen -W "${matches[*]}" -- $cur)) } _mkinitcpio() { - local action cur prev - action="-A -b -c -g -H -h -k -L -M -n -p -S -s -v -z" - _get_comp_words_by_ref cur prev - case "$prev" in - -c|-g) _filedir;; - -k) _find_kernel_versions;; - -b) _filedir -d;; - -p) COMPREPLY=($(cd /etc/mkinitcpio.d/ && compgen -X '!*.preset' -f -- $cur)) - COMPREPLY=("${COMPREPLY[@]%.preset}");; - -A|-H|-S) COMPREPLY=($(cd /lib/initcpio/install/ && compgen -f -- $cur) \ - $(cd /usr/lib/initcpio/install/ && compgen -f -- $cur));; - *) COMPREPLY=($(compgen -W "${action}" -- "$cur"));; - esac + local action cur prev + action="-A -b -c -g -H -h -k -L -M -n -p -S -s -v -z" + _get_comp_words_by_ref cur prev + case "$prev" in + -c|-g) _filedir;; + -k) _find_kernel_versions;; + -b) _filedir -d;; + -p) COMPREPLY=($(cd /etc/mkinitcpio.d/ && compgen -X '!*.preset' -f -- $cur)) + COMPREPLY=("${COMPREPLY[@]%.preset}");; + -A|-H|-S) COMPREPLY=($(cd /lib/initcpio/install/ && compgen -f -- $cur) \ + $(cd /usr/lib/initcpio/install/ && compgen -f -- $cur));; + *) COMPREPLY=($(compgen -W "${action}" -- "$cur"));; + esac } complete -F _mkinitcpio mkinitcpio complete -F _lsinitcpio lsinitcpio -# vim: set ts=2 sw=2 ft=sh noet: +# vim: set et ts=4 sw=4 ft=sh: |