-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode-keybindings-micropython
40 lines (40 loc) · 1.41 KB
/
vscode-keybindings-micropython
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
{
"key": "F1",
"command": "runInTerminal.run",
"args": {"cmd": "python.exe -m ampy.cli --find-port CH340 --baud 115200 reset", "match": ".*"},
"when": "resourceLangId == python"
},
{
"key": "F2",
"command": "runInTerminal.run",
"args": {"cmd": "python.exe -m ampy.cli --find-port CH340 --baud 115200 put ${relativeFile}", "match": ".*"},
"when": "resourceLangId == python"
},
{
"key": "F2",
"command": "runInTerminal.run",
"args": {"cmd": "python.exe -m ampy.cli --find-port CH340 --baud 115200 put ${relativeFile}", "match": ".*"},
"when": "resourceLangId == html"
},
{
"key": "F3",
"command": "runInTerminal.run",
"args": {"cmd": "python.exe -m ampy.cli --find-port CH340 --baud 115200 run --no-output ${relativeFile}", "match": ".*"},
"when": "resourceLangId == python"
},
{
"key": "F4",
"command": "runInTerminal.run",
"args": {"cmd": "python.exe .\\miniterm.py --find-port CH340 --exit-char 4 --filter winmicha ? 115200", "match": ".*"},
"when": "resourceLangId == python"
},
{
"key": "F5",
"command": "workbench.action.terminal.toggleTerminal",
"when": "editorTextFocus"
},
{
"key": "F6",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},