Skip to content

Commit 60be5b0

Browse files
authored
Merge pull request #2294 from Bash-it/ira/completion-cleanup
Lots of little fixes because I screwed up the clean_files.txt and missed unlinted completions
2 parents b6f62a4 + f1a9268 commit 60be5b0

15 files changed

+127
-69
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# shellcheck shell=bash
12
_log_warning 'Bash completion for "crystal" is now covered by "system". This completion can be disabled.'

completion/available/defaults.completion.bash

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# shellcheck shell=bash
2+
# shellcheck disable=SC1090
23

34
if test -s "${BASH_IT?}/vendor/github.com/gaelicWizard/bash-progcomp/defaults.completion.bash"; then
45
source "$_"
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
# shellcheck shell=bash
12
_log_warning 'Bash completion for "drush" is now deprecated, as it used code with incompatible license.
23
Please disable this completion and use the instructions from "drush" developers instead.'

completion/available/fabric.completion.bash

+11-8
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,18 @@ export FAB_COMPLETION_CACHED_TASKS_FILENAME=".fab_tasks~"
4141
# Set command to get time of last file modification as seconds since Epoch
4242
case "$OSTYPE" in
4343
'darwin'* | 'freebsd'*)
44-
__FAB_COMPLETION_MTIME_COMMAND="stat -f '%m'"
44+
__FAB_COMPLETION_MTIME_COMMAND=(stat -f '%m')
4545
;;
4646
*)
47-
__FAB_COMPLETION_MTIME_COMMAND="stat -c '%Y'"
47+
__FAB_COMPLETION_MTIME_COMMAND=(stat -c '%Y')
4848
;;
4949
esac
5050

5151
#
5252
# Get time of last fab cache file modification as seconds since Epoch
5353
#
5454
function __fab_chache_mtime() {
55-
${__FAB_COMPLETION_MTIME_COMMAND} \
55+
"${__FAB_COMPLETION_MTIME_COMMAND[@]}" \
5656
$FAB_COMPLETION_CACHED_TASKS_FILENAME | xargs -n 1 expr
5757
}
5858

@@ -62,10 +62,11 @@ function __fab_chache_mtime() {
6262
function __fab_fabfile_mtime() {
6363
local f="fabfile"
6464
if [[ -e "$f.py" ]]; then
65-
${__FAB_COMPLETION_MTIME_COMMAND} "$f.py" | xargs -n 1 expr
65+
"${__FAB_COMPLETION_MTIME_COMMAND[@]}" "$f.py" | xargs -n 1 expr
6666
else
6767
# Suppose that it's a fabfile dir
68-
find $f/*.py -exec ${__FAB_COMPLETION_MTIME_COMMAND} {} + \
68+
# shellcheck disable=SC2038
69+
find "$f"/*.py -exec "${__FAB_COMPLETION_MTIME_COMMAND[@]}" {} + \
6970
| xargs -n 1 expr | sort -n -r | head -1
7071
fi
7172
}
@@ -79,15 +80,16 @@ function __fab_completion() {
7980

8081
# Variables to hold the current word and possible matches
8182
local cur="${COMP_WORDS[COMP_CWORD]}"
82-
local opts=()
83+
local opts
8384

8485
# Generate possible matches and store them in variable "opts"
8586
case "${cur}" in
8687
-*)
8788
if [[ -z "${__FAB_COMPLETION_LONG_OPT}" ]]; then
88-
export __FAB_COMPLETION_LONG_OPT=$(
89+
__FAB_COMPLETION_LONG_OPT=$(
8990
fab --help | grep -E -o "\-\-[A-Za-z_\-]+\=?" | sort -u
9091
)
92+
export __FAB_COMPLETION_LONG_OPT
9193
fi
9294
opts="${__FAB_COMPLETION_LONG_OPT}"
9395
;;
@@ -124,6 +126,7 @@ function __fab_completion() {
124126
esac
125127

126128
# Set possible completions
127-
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
129+
COMPREPLY=()
130+
while IFS='' read -r line; do COMPREPLY+=("$line"); done < <(compgen -W "${opts}" -- "${cur}")
128131
}
129132
complete -o default -o nospace -F __fab_completion fab

completion/available/gradle.completion.bash

+57-30
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Bash breaks words on : by default. Subproject tasks have ':'
2424
# Avoid inaccurate completions for subproject tasks
25-
COMP_WORDBREAKS=$(echo "$COMP_WORDBREAKS" | sed -e 's/://g')
25+
COMP_WORDBREAKS="${COMP_WORDBREAKS//:/}"
2626

2727
function __gradle-set-project-root-dir() {
2828
project_root_dir="$(_bash-it-find-in-ancestor "settings.gradle" "gradlew")"
@@ -31,31 +31,32 @@ function __gradle-set-project-root-dir() {
3131

3232
__gradle-init-cache-dir() {
3333
cache_dir="$HOME/.gradle/completion"
34-
mkdir -p $cache_dir
34+
mkdir -p "$cache_dir"
3535
}
3636

3737
__gradle-set-build-file() {
3838
# Look for default build script in the settings file (settings.gradle by default)
3939
# Otherwise, default is the file 'build.gradle' in the current directory.
4040
gradle_build_file="$project_root_dir/build.gradle"
4141
if [[ -f "$project_root_dir/settings.gradle" ]]; then
42-
local build_file_name=$(grep "^rootProject\.buildFileName" "$project_root_dir/settings.gradle" \
42+
local build_file_name
43+
build_file_name=$(grep "^rootProject\.buildFileName" "$project_root_dir/settings.gradle" \
4344
| sed -n -e "s/rootProject\.buildFileName = [\'\"]\(.*\)[\'\"]/\1/p")
4445
gradle_build_file="$project_root_dir/${build_file_name:-build.gradle}"
4546
fi
4647
}
4748

4849
__gradle-set-cache-name() {
4950
# Cache name is constructed from the absolute path of the build file.
50-
cache_name=$(echo $gradle_build_file | sed -e 's/\//_/g')
51+
cache_name=${gradle_build_file//'/'/_}
5152
}
5253

5354
__gradle-set-files-checksum() {
5455
# Cache MD5 sum of all Gradle scripts and modified timestamps
5556
if _command_exists md5; then
56-
gradle_files_checksum=$(md5 -q -s "$(cat "$cache_dir/$cache_name" | xargs ls -o 2> /dev/null)")
57+
gradle_files_checksum=$(md5 -q -s "$(xargs ls -o < "$cache_dir/$cache_name" 2> /dev/null)")
5758
elif _command_exists md5sum; then
58-
gradle_files_checksum=$(cat "$cache_dir/$cache_name" | xargs ls -o 2> /dev/null | md5sum | awk '{print $1}')
59+
gradle_files_checksum=$(xargs ls -o < "$cache_dir/$cache_name" 2> /dev/null | md5sum | awk '{print $1}')
5960
else
6061
echo "Cannot generate completions as neither md5 nor md5sum exist on \$PATH"
6162
fi
@@ -66,10 +67,15 @@ __gradle-generate-script-cache() {
6667
local cache_ttl_mins=${GRADLE_CACHE_TTL_MINUTES:-30240}
6768
local script_exclude_pattern=${GRADLE_COMPLETION_EXCLUDE_PATTERN:-"/(build|integTest|out)/"}
6869

69-
if [[ ! $(find $cache_dir/$cache_name -mmin -$cache_ttl_mins 2> /dev/null) ]]; then
70+
if [[ ! $(find "$cache_dir/$cache_name" -mmin "-$cache_ttl_mins" 2> /dev/null) ]]; then
7071
# Cache all Gradle scripts
71-
local gradle_build_scripts=$(find $project_root_dir -type f -name "*.gradle" -o -name "*.gradle.kts" 2> /dev/null | grep -E -v "$script_exclude_pattern")
72-
printf "%s\n" "${gradle_build_scripts[@]}" > $cache_dir/$cache_name
72+
local gradle_build_scripts
73+
gradle_build_scripts=$(
74+
find "$project_root_dir" -type f \
75+
\( -name "*.gradle" -o -name "*.gradle.kts" \) 2> /dev/null \
76+
| grep -E -v "$script_exclude_pattern"
77+
)
78+
printf "%s\n" "${gradle_build_scripts[@]}" > "$cache_dir/$cache_name"
7379
fi
7480
}
7581

@@ -115,7 +121,10 @@ __gradle-long-options() {
115121
--system-prop - Set a system property
116122
--version - Prints Gradle version info
117123
--warn - Log warnings and errors only"
118-
COMPREPLY=($(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}"))
124+
COMPREPLY=()
125+
while IFS='' read -r line; do
126+
COMPREPLY+=("$line")
127+
done < <(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}")
119128
}
120129

121130
__gradle-properties() {
@@ -130,7 +139,10 @@ __gradle-properties() {
130139
-Dorg.gradle.parallel= - Set true to enable parallel project builds (incubating)
131140
-Dorg.gradle.parallel.intra= - Set true to enable intra-project parallel builds (incubating)
132141
-Dorg.gradle.workers.max= - Set the number of workers Gradle is allowed to use"
133-
COMPREPLY=($(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}"))
142+
COMPREPLY=()
143+
while IFS='' read -r line; do
144+
COMPREPLY+=("$line")
145+
done < <(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}")
134146
return 0
135147
}
136148

@@ -156,7 +168,8 @@ __gradle-short-options() {
156168
-I - Specifies an initialization script
157169
-P - Sets a project property of the root project
158170
-S - Print out the full (very verbose) stacktrace"
159-
COMPREPLY=($(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}"))
171+
COMPREPLY=()
172+
while IFS='' read -r line; do COMPREPLY+=("$line"); done < <(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}")
160173
}
161174

162175
__gradle-notify-tasks-cache-build() {
@@ -179,10 +192,10 @@ __gradle-generate-tasks-cache() {
179192
# Run gradle to retrieve possible tasks and cache.
180193
# Reuse Gradle Daemon if IDLE but don't start a new one.
181194
local gradle_tasks_output
182-
if [[ ! -z "$($gradle_cmd --status 2> /dev/null | grep IDLE)" ]]; then
183-
gradle_tasks_output="$($gradle_cmd -b $gradle_build_file --daemon -q tasks --all)"
195+
if "$gradle_cmd" --status 2> /dev/null | grep -q IDLE; then
196+
gradle_tasks_output="$("$gradle_cmd" -b "$gradle_build_file" --daemon -q tasks --all)"
184197
else
185-
gradle_tasks_output="$($gradle_cmd -b $gradle_build_file --no-daemon -q tasks --all)"
198+
gradle_tasks_output="$("$gradle_cmd" -b "$gradle_build_file" --no-daemon -q tasks --all)"
186199
fi
187200
local output_line
188201
local task_description
@@ -206,15 +219,18 @@ __gradle-generate-tasks-cache() {
206219

207220
# subproject tasks can be referenced implicitly from root project
208221
if [[ $GRADLE_COMPLETION_UNQUALIFIED_TASKS == "true" ]]; then
209-
local -a implicit_tasks=()
210-
implicit_tasks=($(comm -23 <(printf "%s\n" "${subproject_tasks[@]}" | sort) <(printf "%s\n" "${root_tasks[@]}" | sort)))
211-
for task in $(printf "%s\n" "${implicit_tasks[@]}"); do
212-
gradle_all_tasks+=($task)
222+
local -a implicit_tasks
223+
while IFS='' read -r line; do
224+
implicit_tasks+=("$line")
225+
done < <(comm -23 <(printf "%s\n" "${subproject_tasks[@]}" | sort) \
226+
<(printf "%s\n" "${root_tasks[@]}" | sort))
227+
for task in "${implicit_tasks[@]}"; do
228+
gradle_all_tasks+=("$task")
213229
done
214230
fi
215231

216-
printf "%s\n" "${gradle_all_tasks[@]}" > $cache_dir/$gradle_files_checksum
217-
echo $gradle_files_checksum > $cache_dir/$cache_name.md5
232+
printf "%s\n" "${gradle_all_tasks[@]}" > "$cache_dir/$gradle_files_checksum"
233+
echo "$gradle_files_checksum" > "$cache_dir/$cache_name.md5"
218234
}
219235

220236
__gradle-completion-init() {
@@ -262,22 +278,30 @@ _gradle() {
262278
__gradle-set-files-checksum
263279

264280
# The cache key is md5 sum of all gradle scripts, so it's valid if it exists.
265-
if [[ -f $cache_dir/$cache_name.md5 ]]; then
266-
local cached_checksum="$(cat $cache_dir/$cache_name.md5)"
281+
if [[ -f "$cache_dir/$cache_name.md5" ]]; then
282+
local cached_checksum
283+
cached_checksum="$(cat "$cache_dir/$cache_name.md5")"
267284
local -a cached_tasks
268285
if [[ -z $cur ]]; then
269-
cached_tasks=($(cat $cache_dir/$cached_checksum))
286+
while IFS='' read -r line; do
287+
cached_tasks+=("$line")
288+
done < "$cache_dir/$cached_checksum"
270289
else
271-
cached_tasks=($(grep "^$cur" $cache_dir/$cached_checksum))
290+
while IFS='' read -r line; do
291+
cached_tasks+=("$line")
292+
done < <(grep "^$cur" "$cache_dir/$cached_checksum")
272293
fi
273-
COMPREPLY=($(compgen -W "${cached_tasks[*]}" -- "$cur"))
294+
while IFS='' read -r line; do
295+
COMPREPLY+=("$line")
296+
done < <(compgen -W "${cached_tasks[*]}" -- "$cur")
274297
else
275298
__gradle-notify-tasks-cache-build
276299
fi
277300

278301
# Regenerate tasks cache in the background
279-
if [[ $gradle_files_checksum != "$(cat $cache_dir/$cache_name.md5)" || ! -f $cache_dir/$gradle_files_checksum ]]; then
280-
$(__gradle-generate-tasks-cache 1>&2 2> /dev/null &)
302+
if [[ $gradle_files_checksum != "$(cat "$cache_dir/$cache_name.md5")" ||
303+
! -f "$cache_dir/$gradle_files_checksum" ]]; then
304+
(__gradle-generate-tasks-cache &> /dev/null &)
281305
fi
282306
else
283307
# Default tasks available outside Gradle projects
@@ -293,15 +317,18 @@ projects - Displays the sub-projects of root project.
293317
properties - Displays the properties of root project.
294318
tasks - Displays the tasks runnable from root project.
295319
wrapper - Generates Gradle wrapper files."
296-
COMPREPLY=($(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}"))
320+
COMPREPLY=()
321+
while IFS='' read -r line; do
322+
COMPREPLY+=("$line")
323+
done < <(compgen -W "${args}" -- "${cur}")
297324
fi
298325
fi
299326

300327
IFS="$OLDIFS"
301328

302329
# Remove description ("[:space:]" and after) if only one possibility
303330
if [[ ${#COMPREPLY[*]} -eq 1 ]]; then
304-
COMPREPLY=(${COMPREPLY[0]%% *})
331+
COMPREPLY=("${COMPREPLY[0]%% *}")
305332
fi
306333

307334
return 0
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
# shellcheck shell=bash
12
_log_warning 'Bash completion for "homesick" is now deprecated, as it used unlicensed code.
23
Please disable this completion and use the instructions from "homesick" bash completion developers instead.'

completion/available/maven.completion.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ _mvn() {
2828
COMPREPLY=($(compgen -W "$cmds" -- "$cur"))
2929
local i=${#COMPREPLY[*]}
3030
while [ "$((--i))" -ge 0 ]; do
31-
COMPREPLY[$i]=${COMPREPLY[$i]#"$colonprefixes"}
31+
COMPREPLY[i]=${COMPREPLY[i]#"$colonprefixes"}
3232
done
3333

3434
return 0
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# shellcheck shell=bash
2+
# shellcheck disable=SC1090
13
_command_exists minishift && source <(minishift completion bash)
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# shellcheck shell=bash
2+
# shellcheck disable=SC1090
13
_command_exists oc && source <(oc completion bash)

completion/available/pew.completion.bash

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# shellcheck shell=bash
2+
# shellcheck disable=SC1090
23

34
if _command_exists pew; then
45
source "$(pew shell_config)"
+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#!/usr/bin/env bash
2-
# Bash completion support for RVM.
1+
# shellcheck shell=bash
2+
# shellcheck disable=SC2154,SC1091
3+
# Bash completion support for RVM.
34
# Source: https://rvm.io/workflow/completion
45

5-
[[ -r $rvm_path/scripts/completion ]] && . $rvm_path/scripts/completion
6+
[[ -r $rvm_path/scripts/completion ]] && . "$rvm_path/scripts/completion"
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
# shellcheck shell=bash
12
_log_warning 'Bash completion for "todo.txt-cli" is now deprecated, as it used code with incompatible license.
23
Please disable this completion and use the instructions from "todo.txt-cli" developers instead.'

completion/available/travis.completion.bash

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# shellcheck shell=bash
2+
# shellcheck disable=SC1090
23

34
if _command_exists travis; then
45
if [[ -s "${__TRAVIS_COMPLETION_SCRIPT:=${TRAVIS_CONFIG_PATH:-${HOME}/.travis}/travis.sh}" ]]; then

0 commit comments

Comments
 (0)