Skip to content
Snippets Groups Projects
Commit e7bfaaa2 authored by Sven Mäder's avatar Sven Mäder :speech_balloon:
Browse files

Add bash completions for various local tools and source automatically

parent 9797d841
No related branches found
No related tags found
No related merge requests found
Showing
with 7381 additions and 5 deletions
_broot() {
local i cur prev opts cmd
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${cmd},${i}" in
",$1")
cmd="broot"
;;
*)
;;
esac
done
case "${cmd}" in
broot)
opts="-d -D -f -F -g -G -h -H -i -I -p -P -s -S -w -W -t -T -c --help --version --conf --dates --no-dates --only-folders --no-only-folders --show-root-fs --show-git-info --no-show-git-info --git-status --hidden --no-hidden --git-ignored --no-git-ignored --permissions --no-permissions --sizes --no-sizes --sort-by-count --sort-by-date --sort-by-size --sort-by-type --no-tree --tree --sort-by-type-dirs-first --sort-by-type-dirs-last --no-sort --whale-spotting --no-whale-spotting --trim-root --no-trim-root --outcmd --verb-output --cmd --color --height --install --set-install-state --print-shell-function --listen --get-root --write-default-conf --send [ROOT]"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--conf)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--outcmd)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--verb-output)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--cmd)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-c)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--color)
COMPREPLY=($(compgen -W "auto yes no" -- "${cur}"))
return 0
;;
--height)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--set-install-state)
COMPREPLY=($(compgen -W "undefined refused installed" -- "${cur}"))
return 0
;;
--print-shell-function)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--listen)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--write-default-conf)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--send)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
if [[ "${BASH_VERSINFO[0]}" -eq 4 && "${BASH_VERSINFO[1]}" -ge 4 || "${BASH_VERSINFO[0]}" -gt 4 ]]; then
complete -F _broot -o nosort -o bashdefault -o default broot
else
complete -F _broot -o bashdefault -o default broot
fi
_btm() {
local i cur prev opts cmd
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${cmd},${i}" in
",$1")
cmd="btm"
;;
*)
;;
esac
done
case "${cmd}" in
btm)
opts="-b -C -t -m -e -r -d -S -u -g -R -T -n -W -c -f -k -l -a -h -V --autohide_time --basic --config_location --default_time_value --default_widget_count --default_widget_type --disable_click --dot_marker --expanded --hide_table_gap --hide_time --rate --retention --show_table_scroll_position --time_delta --case_sensitive --current_usage --disable_advanced_kill --group_processes --process_memory_as_value --process_command --regex --tree --unnormalized_cpu --whole_word --celsius --fahrenheit --kelvin --cpu_left_legend --default_cpu_entry --hide_avg_cpu --memory_legend --enable_cache_memory --network_legend --network_use_bytes --network_use_binary_prefix --network_use_log --use_old_network_legend --battery --enable_gpu --theme --help --version"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--config_location)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-C)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--default_time_value)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-t)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--default_widget_count)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--default_widget_type)
COMPREPLY=($(compgen -W "cpu mem net network proc process processes temp temperature disk batt battery" -- "${cur}"))
return 0
;;
--rate)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-r)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--retention)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--time_delta)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-d)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--default_cpu_entry)
COMPREPLY=($(compgen -W "all avg" -- "${cur}"))
return 0
;;
--memory_legend)
COMPREPLY=($(compgen -W "none top-left top top-right left right bottom-left bottom bottom-right" -- "${cur}"))
return 0
;;
--network_legend)
COMPREPLY=($(compgen -W "none top-left top top-right left right bottom-left bottom bottom-right" -- "${cur}"))
return 0
;;
--theme)
COMPREPLY=($(compgen -W "default default-light gruvbox gruvbox-light nord nord-light" -- "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
if [[ "${BASH_VERSINFO[0]}" -eq 4 && "${BASH_VERSINFO[1]}" -ge 4 || "${BASH_VERSINFO[0]}" -gt 4 ]]; then
complete -F _btm -o nosort -o bashdefault -o default btm
else
complete -F _btm -o bashdefault -o default btm
fi
_delta() {
local i cur prev opts cmd
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${cmd},${i}" in
",$1")
cmd="delta"
;;
*)
;;
esac
done
case "${cmd}" in
delta)
opts="-n -s -w -h -V --blame-code-style --blame-format --blame-palette --blame-separator-format --blame-separator-style --blame-timestamp-format --blame-timestamp-output-format --color-only --config --commit-decoration-style --commit-regex --commit-style --dark --default-language --diff-highlight --diff-so-fancy --diff-stat-align-width --features --file-added-label --file-copied-label --file-decoration-style --file-modified-label --file-removed-label --file-renamed-label --file-style --file-transformation --generate-completion --grep-context-line-style --grep-file-style --grep-header-decoration-style --grep-header-file-style --grep-line-number-style --grep-output-type --grep-match-line-style --grep-match-word-style --grep-separator-symbol --hunk-header-decoration-style --hunk-header-file-style --hunk-header-line-number-style --hunk-header-style --hunk-label --hyperlinks --hyperlinks-commit-link-format --hyperlinks-file-link-format --inline-hint-style --inspect-raw-lines --keep-plus-minus-markers --light --line-buffer-size --line-fill-method --line-numbers --line-numbers-left-format --line-numbers-left-style --line-numbers-minus-style --line-numbers-plus-style --line-numbers-right-format --line-numbers-right-style --line-numbers-zero-style --list-languages --list-syntax-themes --map-styles --max-line-distance --max-line-length --merge-conflict-begin-symbol --merge-conflict-end-symbol --merge-conflict-ours-diff-header-decoration-style --merge-conflict-ours-diff-header-style --merge-conflict-theirs-diff-header-decoration-style --merge-conflict-theirs-diff-header-style --minus-empty-line-marker-style --minus-emph-style --minus-non-emph-style --minus-style --navigate --navigate-regex --no-gitconfig --pager --paging --parse-ansi --plus-emph-style --plus-empty-line-marker-style --plus-non-emph-style --plus-style --raw --relative-paths --right-arrow --show-colors --show-config --show-syntax-themes --show-themes --side-by-side --syntax-theme --tabs --true-color --whitespace-error-style --width --word-diff-regex --wrap-left-symbol --wrap-max-lines --wrap-right-percent --wrap-right-prefix-symbol --wrap-right-symbol --zero-style --24-bit-color --help --version [MINUS_FILE] [PLUS_FILE]"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--blame-code-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--blame-format)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--blame-palette)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--blame-separator-format)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--blame-separator-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--blame-timestamp-format)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--blame-timestamp-output-format)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--config)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--commit-decoration-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--commit-regex)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--commit-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--default-language)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--diff-stat-align-width)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--features)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--file-added-label)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--file-copied-label)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--file-decoration-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--file-modified-label)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--file-removed-label)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--file-renamed-label)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--file-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--file-transformation)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--generate-completion)
COMPREPLY=($(compgen -W "bash elvish fish powershell zsh" -- "${cur}"))
return 0
;;
--grep-context-line-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--grep-file-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--grep-header-decoration-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--grep-header-file-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--grep-line-number-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--grep-output-type)
COMPREPLY=($(compgen -W "ripgrep classic" -- "${cur}"))
return 0
;;
--grep-match-line-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--grep-match-word-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--grep-separator-symbol)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--hunk-header-decoration-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--hunk-header-file-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--hunk-header-line-number-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--hunk-header-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--hunk-label)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--hyperlinks-commit-link-format)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--hyperlinks-file-link-format)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--inline-hint-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--inspect-raw-lines)
COMPREPLY=($(compgen -W "true false" -- "${cur}"))
return 0
;;
--line-buffer-size)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--line-fill-method)
COMPREPLY=($(compgen -W "ansi spaces" -- "${cur}"))
return 0
;;
--line-numbers-left-format)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--line-numbers-left-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--line-numbers-minus-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--line-numbers-plus-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--line-numbers-right-format)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--line-numbers-right-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--line-numbers-zero-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--map-styles)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--max-line-distance)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--max-line-length)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--merge-conflict-begin-symbol)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--merge-conflict-end-symbol)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--merge-conflict-ours-diff-header-decoration-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--merge-conflict-ours-diff-header-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--merge-conflict-theirs-diff-header-decoration-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--merge-conflict-theirs-diff-header-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--minus-empty-line-marker-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--minus-emph-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--minus-non-emph-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--minus-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--navigate-regex)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--pager)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--paging)
COMPREPLY=($(compgen -W "auto always never" -- "${cur}"))
return 0
;;
--plus-emph-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--plus-empty-line-marker-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--plus-non-emph-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--plus-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--right-arrow)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--syntax-theme)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--tabs)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--true-color)
COMPREPLY=($(compgen -W "auto always never" -- "${cur}"))
return 0
;;
--whitespace-error-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--width)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-w)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--word-diff-regex)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--wrap-left-symbol)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--wrap-max-lines)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--wrap-right-percent)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--wrap-right-prefix-symbol)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--wrap-right-symbol)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--zero-style)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--24-bit-color)
COMPREPLY=($(compgen -W "auto always never" -- "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
# nosort isn't supported for bash less than < 4.4
if [[ ${BASH_VERSINFO[0]} -lt 4 || ( ${BASH_VERSINFO[0]} -eq 4 && ${BASH_VERSINFO[1]} -lt 4 ) ]]; then
complete -F _delta -o bashdefault -o default delta
else
complete -F _delta -o bashdefault -o default -o nosort delta
fi
_dog()
{
cur=${COMP_WORDS[COMP_CWORD]}
prev=${COMP_WORDS[COMP_CWORD-1]}
case "$prev" in
-'?'|--help|-v|--version)
return
;;
-t|--type)
COMPREPLY=( $( compgen -W 'A AAAA CAA CNAME HINFO MX NS PTR SOA SRV TXT' -- "$cur" ) )
return
;;
--edns)
COMPREPLY=( $( compgen -W 'disable hide show' -- "$cur" ) )
return
;;
-Z)
COMPREPLY=( $( compgen -W 'aa ad bufsize= cd' -- "$cur" ) )
return
;;
--class)
COMPREPLY=( $( compgen -W 'IN CH HS' -- "$cur" ) )
return
;;
--color|--colour)
COMPREPLY=( $( compgen -W 'always automatic never' -- $cur ) )
return
;;
esac
case "$cur" in
-*)
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
return
;;
*)
COMPREPLY=( $( compgen -W 'A AAAA CAA CNAME HINFO MX NS PTR SOA SRV TXT' -- "$cur" ) )
;;
esac
} &&
complete -o bashdefault -F _dog dog
_dust() {
local i cur prev opts cmd
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${cmd},${i}" in
",$1")
cmd="dust"
;;
*)
;;
esac
done
case "${cmd}" in
dust)
opts="-d -T -n -p -X -I -L -x -s -r -c -C -b -B -z -R -f -i -v -e -t -w -P -D -F -o -S -j -M -A -y -m -h -V --depth --threads --number-of-lines --full-paths --ignore-directory --ignore-all-in-file --dereference-links --limit-filesystem --apparent-size --reverse --no-colors --force-colors --no-percent-bars --bars-on-right --min-size --screen-reader --skip-total --filecount --ignore_hidden --invert-filter --filter --file_types --terminal_width --no-progress --print-errors --only-dir --only-file --output-format --stack-size --output-json --mtime --atime --ctime --files0-from --filetime --help --version [PATH]..."
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--depth)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-d)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--threads)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-T)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--number-of-lines)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-n)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--ignore-directory)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-X)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--ignore-all-in-file)
local oldifs
if [[ -v IFS ]]; then
oldifs="$IFS"
fi
IFS=$'\n'
COMPREPLY=($(compgen -f "${cur}"))
if [[ -v oldifs ]]; then
IFS="$oldifs"
fi
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then
compopt -o filenames
fi
return 0
;;
-I)
local oldifs
if [[ -v IFS ]]; then
oldifs="$IFS"
fi
IFS=$'\n'
COMPREPLY=($(compgen -f "${cur}"))
if [[ -v oldifs ]]; then
IFS="$oldifs"
fi
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then
compopt -o filenames
fi
return 0
;;
--min-size)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-z)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--invert-filter)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-v)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--filter)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-e)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--terminal_width)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-w)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--output-format)
COMPREPLY=($(compgen -W "si b k m g t kb mb gb tb" -- "${cur}"))
return 0
;;
-o)
COMPREPLY=($(compgen -W "si b k m g t kb mb gb tb" -- "${cur}"))
return 0
;;
--stack-size)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-S)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--mtime)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-M)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--atime)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-A)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--ctime)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-y)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--files0-from)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--filetime)
COMPREPLY=($(compgen -W "a c m" -- "${cur}"))
return 0
;;
-m)
COMPREPLY=($(compgen -W "a c m" -- "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
if [[ "${BASH_VERSINFO[0]}" -eq 4 && "${BASH_VERSINFO[1]}" -ge 4 || "${BASH_VERSINFO[0]}" -gt 4 ]]; then
complete -F _dust -o nosort -o bashdefault -o default dust
else
complete -F _dust -o bashdefault -o default dust
fi
# shellcheck shell=bash
_eza() {
cur=${COMP_WORDS[COMP_CWORD]}
prev=${COMP_WORDS[COMP_CWORD-1]}
case "$prev" in
--help|-v|--version|--smart-group)
return
;;
--colour)
mapfile -t COMPREPLY < <(compgen -W 'always automatic auto never' -- "$cur")
return
;;
--icons)
mapfile -t COMPREPLY < <(compgen -W 'always automatic auto never' -- "$cur")
return
;;
-L|--level)
mapfile -t COMPREPLY < <(compgen -W '{0..9}' -- "$cur")
return
;;
-s|--sort)
mapfile -t COMPREPLY < <(compgen -W 'name filename Name Filename size filesize extension Extension date time modified changed accessed created type inode oldest newest age none --' -- "$cur")
return
;;
-t|--time)
mapfile -t COMPREPLY < <(compgen -W 'modified changed accessed created --' -- "$cur")
return
;;
--time-style)
mapfile -t COMPREPLY < <(compgen -W 'default iso long-iso full-iso relative +FORMAT --' -- "$cur")
return
;;
--color-scale)
mapfile -t COMPREPLY < <(compgen -W 'all age size --' -- "$cur")
return
;;
--color-scale-mode)
mapfile -t COMPREPLY < <(compgen -W 'fixed gradient --' -- "$cur")
return
;;
--absolute)
mapfile -t COMPREPLY < <(compgen -W 'on follow off --' -- "$cur")
return
;;
esac
case "$cur" in
# _parse_help doesn’t pick up short options when they are on the same line than long options
--*)
# colo[u]r isn’t parsed correctly so we filter these options out and add them by hand
parse_help=$(eza --help | grep -oE ' (--[[:alnum:]@-]+)' | tr -d ' ' | grep -v '\--colo')
completions=$(echo '--color --colour --color-scale --colour-scale --color-scale-mode --colour-scale-mode' "$parse_help")
mapfile -t COMPREPLY < <(compgen -W "$completions" -- "$cur")
;;
-*)
completions=$(eza --help | grep -oE ' (-[[:alnum:]@])' | tr -d ' ')
mapfile -t COMPREPLY < <(compgen -W "$completions" -- "$cur")
;;
*)
_filedir
;;
esac
} &&
complete -o filenames -o bashdefault -F _eza eza
_hyperfine() {
local i cur prev opts cmd
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${cmd},${i}" in
",$1")
cmd="hyperfine"
;;
*)
;;
esac
done
case "${cmd}" in
hyperfine)
opts="-w -m -M -r -s -p -c -P -D -L -S -N -i -u -n -h -V --warmup --min-runs --max-runs --runs --setup --prepare --cleanup --parameter-scan --parameter-step-size --parameter-list --shell --ignore-failure --style --sort --time-unit --export-asciidoc --export-csv --export-json --export-markdown --export-orgmode --show-output --output --input --command-name --min-benchmarking-time --debug-mode --help --version <command>..."
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--warmup)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-w)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--min-runs)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-m)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--max-runs)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-M)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--runs)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-r)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--setup)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-s)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--prepare)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-p)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--cleanup)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-c)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--parameter-scan)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-P)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--parameter-step-size)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-D)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--parameter-list)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-L)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--shell)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-S)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--style)
COMPREPLY=($(compgen -W "auto basic full nocolor color none" -- "${cur}"))
return 0
;;
--sort)
COMPREPLY=($(compgen -W "auto command mean-time" -- "${cur}"))
return 0
;;
--time-unit)
COMPREPLY=($(compgen -W "microsecond millisecond second" -- "${cur}"))
return 0
;;
-u)
COMPREPLY=($(compgen -W "microsecond millisecond second" -- "${cur}"))
return 0
;;
--export-asciidoc)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--export-csv)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--export-json)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--export-markdown)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--export-orgmode)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--output)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--input)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--command-name)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-n)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--min-benchmarking-time)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
complete -F _hyperfine -o nosort -o bashdefault -o default hyperfine
_lsd() {
local i cur prev opts cmd
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${cmd},${i}" in
",$1")
cmd="lsd"
;;
*)
;;
esac
done
case "${cmd}" in
lsd)
opts="-a -A -F -l -1 -R -h -d -t -S -X -G -v -U -r -I -i -g -L -Z -N -V --all --almost-all --color --icon --icon-theme --classify --long --ignore-config --config-file --oneline --recursive --human-readable --tree --depth --directory-only --permission --size --total-size --date --timesort --sizesort --extensionsort --gitsort --versionsort --sort --no-sort --reverse --group-dirs --group-directories-first --blocks --classic --no-symlink --ignore-glob --inode --git --dereference --context --hyperlink --header --truncate-owner-after --truncate-owner-marker --system-protected --literal --help --version [FILE]..."
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--color)
COMPREPLY=($(compgen -W "always auto never" -- "${cur}"))
return 0
;;
--icon)
COMPREPLY=($(compgen -W "always auto never" -- "${cur}"))
return 0
;;
--icon-theme)
COMPREPLY=($(compgen -W "fancy unicode" -- "${cur}"))
return 0
;;
--config-file)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--depth)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--permission)
COMPREPLY=($(compgen -W "rwx octal attributes disable" -- "${cur}"))
return 0
;;
--size)
COMPREPLY=($(compgen -W "default short bytes" -- "${cur}"))
return 0
;;
--date)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--sort)
COMPREPLY=($(compgen -W "size time version extension git none" -- "${cur}"))
return 0
;;
--group-dirs)
COMPREPLY=($(compgen -W "none first last" -- "${cur}"))
return 0
;;
--blocks)
COMPREPLY=($(compgen -W "permission user group context size date name inode links git" -- "${cur}"))
return 0
;;
--ignore-glob)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-I)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--hyperlink)
COMPREPLY=($(compgen -W "always auto never" -- "${cur}"))
return 0
;;
--truncate-owner-after)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--truncate-owner-marker)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
if [[ "${BASH_VERSINFO[0]}" -eq 4 && "${BASH_VERSINFO[1]}" -ge 4 || "${BASH_VERSINFO[0]}" -gt 4 ]]; then
complete -F _lsd -o nosort -o bashdefault -o default lsd
else
complete -F _lsd -o bashdefault -o default lsd
fi
_pdu() {
local i cur prev opts cmd
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${cmd},${i}" in
",$1")
cmd="pdu"
;;
*)
;;
esac
done
case "${cmd}" in
pdu)
opts="-h -V --json-input --json-output --bytes-format --top-down --align-right --quantity --max-depth --total-width --column-width --min-ratio --no-sort --silent-errors --progress --help --version [FILES]..."
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--bytes-format)
COMPREPLY=($(compgen -W "plain metric binary" -- "${cur}"))
return 0
;;
--quantity)
COMPREPLY=($(compgen -W "apparent-size block-size block-count" -- "${cur}"))
return 0
;;
--max-depth)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--total-width)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--column-width)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--min-ratio)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
if [[ "${BASH_VERSINFO[0]}" -eq 4 && "${BASH_VERSINFO[1]}" -ge 4 || "${BASH_VERSINFO[0]}" -gt 4 ]]; then
complete -F _pdu -o nosort -o bashdefault -o default pdu
else
complete -F _pdu -o bashdefault -o default pdu
fi
_sd() {
local i cur prev opts cmd
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${cmd},${i}" in
",$1")
cmd="sd"
;;
*)
;;
esac
done
case "${cmd}" in
sd)
opts="-p -F -n -f -h -V --preview --fixed-strings --max-replacements --flags --help --version <FIND> <REPLACE_WITH> [FILES]..."
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--max-replacements)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-n)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--flags)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-f)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
complete -F _sd -o nosort -o bashdefault -o default sd
# tealdeer bash completion
_tealdeer()
{
local cur prev words cword
_init_completion || return
case $prev in
-h|--help|-v|--version|-l|--list|-u|--update|--no-auto-update|-c|--clear-cache|--pager|-r|--raw|--show-paths|--seed-config|-q|--quiet)
return
;;
-f|--render)
_filedir
return
;;
-p|--platform)
COMPREPLY=( $(compgen -W 'linux macos sunos windows android' -- "${cur}") )
return
;;
--color)
COMPREPLY=( $(compgen -W 'always auto never' -- "${cur}") )
return
;;
esac
if [[ $cur == -* ]]; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
return
fi
COMPREPLY=( $(compgen -W '$( tldr -l | tr -d , )' -- "${cur}") )
}
complete -F _tealdeer tldr
This diff is collapsed.
_xh() {
local i cur prev opts cmd
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${cmd},${i}" in
",$1")
cmd="xh"
;;
*)
;;
esac
done
case "${cmd}" in
xh)
opts="-j -f -s -p -h -b -m -v -P -q -S -o -d -c -A -a -F -4 -6 -I -V --json --form --multipart --raw --pretty --format-options --style --response-charset --response-mime --print --headers --body --meta --verbose --all --history-print --quiet --stream --output --download --continue --session --session-read-only --auth-type --auth --bearer --ignore-netrc --offline --check-status --follow --max-redirects --timeout --proxy --verify --cert --cert-key --ssl --native-tls --default-scheme --https --http-version --resolve --interface --ipv4 --ipv6 --ignore-stdin --curl --curl-long --help --no-json --no-form --no-multipart --no-raw --no-pretty --no-format-options --no-style --no-response-charset --no-response-mime --no-print --no-headers --no-body --no-meta --no-verbose --no-all --no-history-print --no-quiet --no-stream --no-output --no-download --no-continue --no-session --no-session-read-only --no-auth-type --no-auth --no-bearer --no-ignore-netrc --no-offline --no-check-status --no-follow --no-max-redirects --no-timeout --no-proxy --no-verify --no-cert --no-cert-key --no-ssl --no-native-tls --no-default-scheme --no-https --no-http-version --no-resolve --no-interface --no-ipv4 --no-ipv6 --no-ignore-stdin --no-curl --no-curl-long --no-help --version <[METHOD] URL> [REQUEST_ITEM]..."
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--raw)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--pretty)
COMPREPLY=($(compgen -W "all colors format none" -- "${cur}"))
return 0
;;
--format-options)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--style)
COMPREPLY=($(compgen -W "auto solarized monokai fruity" -- "${cur}"))
return 0
;;
-s)
COMPREPLY=($(compgen -W "auto solarized monokai fruity" -- "${cur}"))
return 0
;;
--response-charset)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--response-mime)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--print)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-p)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--history-print)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-P)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--output)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-o)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--session)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--session-read-only)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--auth-type)
COMPREPLY=($(compgen -W "basic bearer digest" -- "${cur}"))
return 0
;;
-A)
COMPREPLY=($(compgen -W "basic bearer digest" -- "${cur}"))
return 0
;;
--auth)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-a)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--bearer)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--max-redirects)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--timeout)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--proxy)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--verify)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--cert)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--cert-key)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--ssl)
COMPREPLY=($(compgen -W "auto tls1 tls1.1 tls1.2 tls1.3" -- "${cur}"))
return 0
;;
--default-scheme)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--http-version)
COMPREPLY=($(compgen -W "1.0 1.1 2 2-prior-knowledge" -- "${cur}"))
return 0
;;
--resolve)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--interface)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
if [[ "${BASH_VERSINFO[0]}" -eq 4 && "${BASH_VERSINFO[1]}" -ge 4 || "${BASH_VERSINFO[0]}" -gt 4 ]]; then
complete -F _xh -o nosort -o bashdefault -o default xh
else
complete -F _xh -o bashdefault -o default xh
fi
This diff is collapsed.
......@@ -21,10 +21,14 @@ complete -F _scp -o nospace gvimscp
# py-ethz
if [ -f ~/git/gitlab/py-ethz/bin/ethz-completion.bash ] && ! shopt -oq posix; then
. ~/git/gitlab/py-ethz/bin/ethz-completion.bash
source_if_exists ~/git/gitlab/py-ethz/bin/ethz-completion.bash
fi
# fzf
if [ -x "$(command -v fzf)" ]; then
source_if_exists "${ENVRCD_PATH}/profile/_assets/fzf/init_fzf_bash.sh"
fi
# bash completions for local commands in ~/.local/bin
LOCAL_COMMANDS="fzf tldr zellij uv xh sd delta dust pdu dog hyperfine btm broot lsd eza"
for LOCAL_COMMAND in ${LOCAL_COMMANDS}; do
#if [ -x "$(command -v ${LOCAL_COMMAND})" ]; then # POSIX compatible
if hash ${LOCAL_COMMAND} 2>/dev/null; then # bash builtin
source_if_exists "${ENVRCD_PATH}/profile/_assets/completions/${LOCAL_COMMAND}_bash"
fi
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment