18 lines
497 B
Plaintext
18 lines
497 B
Plaintext
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# SPDX-FileCopyrightText: 2025 ai-ad4 and the FreePDFEditor contributors
|
|
# bash completion for freepdfeditor
|
|
|
|
_freepdfeditor_completion() {
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=($(compgen -W '--help --version' -- "$cur"))
|
|
return
|
|
fi
|
|
|
|
# Filename completion, restricted to PDFs by convention.
|
|
_filedir pdf
|
|
}
|
|
|
|
complete -F _freepdfeditor_completion freepdfeditor |