aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/templates/wizards/files/nimscript/wizard.json
blob: 15f366773b601ac021b7403a524f77ca746e44ab (plain)
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
{
    "version": 1,
    "kind": "file",
    "id": "Z.NimScript",
    "category": "Z.Nim",
    "trDescription": "Creates an empty Nim script file using UTF-8 charset.",
    "trDisplayName": "Nim Script File",
    "trDisplayCategory": "Nim",
    "icon": "../../projects/nim/icon.png",
    "enabled": "%{JS: value('Plugins').indexOf('Nim') >= 0}",

    "pages" :
    [
        {
            "trDisplayName": "Location",
            "trShortTitle": "Location",
            "typeId": "File"
        },
        {
            "trDisplayName": "Project Management",
            "trShortTitle": "Summary",
            "typeId": "Summary"
        }
    ],
    "generators" :
    [
        {
            "typeId": "File",
            "data":
            {
                "source": "file.nims",
                "target": "%{JS: Util.fileName(value('TargetPath'), 'nims')}",
                "openInEditor": true
            }
        }
    ]
}