forked from mikf/gallery-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompletion_zsh.py
executable file
·50 lines (35 loc) · 1.14 KB
/
completion_zsh.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2020 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
"""Generate zsh completion script from gallery-dl's argument parser"""
import util
from gallery_dl import option
TEMPLATE = """#compdef gallery-dl
local curcontext="$curcontext"
typeset -A opt_args
local rc=1
_arguments -C -S \\
%(opts)s && rc=0
return rc
"""
opts = []
for action in option.build_parser()._actions:
if not action.option_strings:
continue
elif len(action.option_strings) == 1:
opt = action.option_strings[0]
else:
opt = "{" + ",".join(action.option_strings) + "}"
opt += "'[" + action.help.replace("'", '"') + "]'"
if action.metavar:
opt += ":'<" + action.metavar.lower() + ">'"
if action.metavar in ("FILE", "CFG", "DEST"):
opt += ":_files"
opts.append(opt)
PATH = util.path("data/completion/_gallery-dl")
with util.lazy(PATH) as file:
file.write(TEMPLATE % {"opts": " \\\n".join(opts)})