aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/completion.bash
blob: a8a7467132adb1180894e8055dfe2dc13f85b05e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# builtin with builtins
complete -b builtin

# cd/pushd with directories
complete -d cd pushd

# command/hash/type with commands
complete -c command hash type

# help with topics
complete -A helptopic help

# set with options
complete -A setopt set

# shopt with shell options
complete -A shopt shopt

# unset with shell variables and functions
complete -v -A function unset