summaryrefslogtreecommitdiff
path: root/completions/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'completions/gdb')
-rw-r--r--completions/gdb33
1 files changed, 17 insertions, 16 deletions
diff --git a/completions/gdb b/completions/gdb
index b37387e1..f78f8a57 100644
--- a/completions/gdb
+++ b/completions/gdb
@@ -6,41 +6,42 @@ _gdb()
_init_completion || return
# gdb [options] --args executable-file [inferior-arguments ...]
- for (( i=1; i < cword; i++ )); do
- if [[ "${words[i]}" == --args ]]; then
- _command_offset $((i+1))
+ for ((i = 1; i < cword; i++)); do
+ if [[ ${words[i]} == --args ]]; then
+ _command_offset $((i + 1))
return $?
fi
done
# gdb [options] [executable-file [core-file or process-id]]
- if [[ $cword -eq 1 ]]; then
+ if ((cword == 1)); then
local IFS
compopt -o filenames
- if [[ "$cur" == */* ]]; then
+ if [[ $cur == */* ]]; then
# compgen -c works as expected if $cur contains any slashes.
IFS=$'\n'
- COMPREPLY=( $(PATH="$PATH:." compgen -d -c -- "$cur") )
+ COMPREPLY=($(PATH="$PATH:." compgen -d -c -- "$cur"))
else
# otherwise compgen -c contains Bash's built-in commands,
# functions and aliases. Thus we need to retrieve the program
# names manually.
IFS=":"
- local path_array=( $(\
- command sed -e 's/:\{2,\}/:/g' -e 's/^://' -e 's/:$//' <<<"$PATH") )
+ local path_array=($(
+ command sed -e 's/:\{2,\}/:/g' -e 's/^://' -e 's/:$//' <<<"$PATH"
+ ))
IFS=$'\n'
- COMPREPLY=( $(compgen -d -W '$(find "${path_array[@]}" . \
+ COMPREPLY=($(compgen -d -W '$(find "${path_array[@]}" . \
-mindepth 1 -maxdepth 1 -not -type d -executable \
- -printf "%f\\n" 2>/dev/null)' -- "$cur") )
+ -printf "%f\\n" 2>/dev/null)' -- "$cur"))
fi
- elif [[ $cword -eq 2 ]]; then
- COMPREPLY=( $(compgen -W "$(command ps axo comm,pid | \
- awk '{if ($1 ~ /^'"${prev##*/}"'/) print $2}')" -- "$cur") )
+ elif ((cword == 2)); then
+ COMPREPLY=($(compgen -W "$(command ps axo comm,pid |
+ awk '{if ($1 ~ /^'"${prev##*/}"'/) print $2}')" -- "$cur"))
compopt -o filenames
- COMPREPLY+=( $(compgen -f -X '!?(*/)core?(.?*)' -o plusdirs \
- -- "$cur") )
+ COMPREPLY+=($(compgen -f -X '!?(*/)core?(.?*)' -o plusdirs \
+ -- "$cur"))
fi
} &&
-complete -F _gdb gdb
+ complete -F _gdb gdb
# ex: filetype=sh