aboutsummaryrefslogtreecommitdiff
path: root/buildroot/share/sublime/auto_build_sublime_menu/Main.sublime-menu
blob: 60939d12e7e80a20291f8ad18acf2557d9bdb0b5 (plain) (blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[

    {
        "caption": "Auto Build",
        "children": [
            {
                "caption": "PIO Build",
                "command": "webdevshell",
                "args": {
                    "command": "python buildroot/share/vscode/auto_build.py build"
                }
            },
            {
                "caption": "PIO Clean",
                "command": "webdevshell",
                "args": {
                    "command": "python buildroot/share/vscode/auto_build.py clean"
                }
            },
            {
                "caption": "PIO Upload",
                "command": "webdevshell",
                "args": {
                    "command": "python buildroot/share/vscode/auto_build.py upload"
                }
            },
            {
                "caption": "PIO Upload (traceback)",
                "command": "webdevshell",
                "args": {
                    "command": "python buildroot/share/vscode/auto_build.py traceback"
                }
            },
            {
                "caption": "PIO Upload using Programmer",
                "command": "webdevshell",
                "args": {
                    "command": "python buildroot/share/vscode/auto_build.py program"
                }
            },
            {
                "caption": "PIO Test",
                "command": "webdevshell",
                "args": {
                    "command": "python buildroot/share/vscode/auto_build.py test"
                }
            },
            {
                "caption": "PIO Debug",
                "command": "webdevshell",
                "args": {
                    "command": "python buildroot/share/vscode/auto_build.py debug"
                }
            },
            {
                "caption": "PIO Remote",
                "command": "webdevshell",
                "args": {
                    "command": "python buildroot/share/vscode/auto_build.py remote"
                }
            }
        ],
        "id": "AutoBuild",
        "mnemonic": "A"
    }
]