summaryrefslogtreecommitdiffstats
path: root/shell-completion/zsh/_sd_unit_files
blob: cce44423e969b6047f23f054bb02faf4b968cc15 (plain)
1
2
3
4
5
6
7
8
9
10
#autoload
# SPDX-License-Identifier: LGPL-2.1+

_sd_unit_files() {
    local files expl
    files=( '*:files:->files' )

    _description files expl 'unit file'
    _files "$expl[@]" -g '*.(automount|device|mount|path|service|socket|swap|target|timer)'
}