aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/syntax-highlighting/data/generators/nsis-gen.py
blob: 4f03bd44ff654671ecca195ba86f02c9c0841d5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python

from __future__ import print_function

tokens = []
with open("makensiscmdhelp.output") as f: # output from `makensis /cmdhelp`
    for line in f:
        if line.startswith(" "):
            continue # line continuation

        tokens.append(line.split()[0])

keywords = [x[1:] for x in tokens if x.startswith("!")]
basefuncs = [x for x in tokens if not x.startswith("!")]

print("KEYWORDS")
for keyword in keywords:
    print("<item> %s </item>" % keyword)
print()

print("BASEFUNCS")
for basefunc in basefuncs:
    print("<item> %s </item>" % basefunc)