summaryrefslogtreecommitdiff
path: root/zcompletion/_cmdtemp
blob: fc67ad0639834b669e2040e7b811e797b7e0d361 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#compdef cmdtemp

_cmdtemp() {
    _arguments -s -S \
        "*::cmdtemp command:_list_commands"
    return 0
}


(( $+functions[_list_commands] )) ||
_list_commands() {
    _message "`cmdtemp`"
}