aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/completion.bash
blob: 6a382a3761e34a4f69f6de832e33edcc90f73659 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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

# sudo with commands (and not files)
complete -c sudo

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