1
1
{
2
- "C_Cpp.clang_format_fallbackStyle " : " { BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 2, TabWidth: 2, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: true, ColumnLimit: 0, AccessModifierOffset: -2, NamespaceIndentation: All, FixNamespaceComments: false, IndentAccessModifiers: true, PointerAlignment: Left, ReferenceAlignment: Left, ContinuationIndentWidth: 2} " ,
3
- "files.exclude" : {
4
- "**/.lh " : true
5
- } ,
6
- "cSpell.words " : [
7
- " YASOLR "
8
- ],
9
- "cmake.configureOnOpen " : false ,
10
- "files.associations " : {
11
- "*.cps " : " javascript " ,
12
- "*.config" : " cpp " ,
13
- "compare" : " cpp " ,
14
- "*.tcc " : " cpp " ,
15
- "deque " : " cpp " ,
16
- "vector " : " cpp " ,
17
- "array" : " cpp " ,
18
- "atomic" : " cpp " ,
19
- "bit " : " cpp " ,
20
- "bitset " : " cpp " ,
21
- "cctype " : " cpp " ,
22
- "chrono" : " cpp " ,
23
- "clocale " : " cpp " ,
24
- "cmath " : " cpp " ,
25
- "concepts" : " cpp " ,
26
- "condition_variable" : " cpp " ,
27
- "cstdarg" : " cpp " ,
28
- "cstddef" : " cpp " ,
29
- "cstdint " : " cpp " ,
30
- "cstdio " : " cpp " ,
31
- "cstdlib " : " cpp " ,
32
- "cstring" : " cpp " ,
33
- "ctime" : " cpp " ,
34
- "cwchar " : " cpp " ,
35
- "cwctype " : " cpp " ,
36
- "list " : " cpp " ,
37
- "map" : " cpp " ,
38
- "set " : " cpp " ,
39
- "unordered_map " : " cpp " ,
40
- "exception" : " cpp " ,
41
- "algorithm" : " cpp " ,
42
- "functional" : " cpp " ,
43
- "iterator" : " cpp " ,
44
- "memory " : " cpp " ,
45
- "memory_resource " : " cpp " ,
46
- "numeric " : " cpp " ,
47
- "optional" : " cpp " ,
48
- "random " : " cpp " ,
49
- "ratio " : " cpp " ,
50
- "regex" : " cpp " ,
51
- "string" : " cpp " ,
52
- "string_view" : " cpp " ,
53
- "system_error" : " cpp " ,
54
- "tuple " : " cpp " ,
55
- "type_traits " : " cpp " ,
56
- "utility " : " cpp " ,
57
- "initializer_list" : " cpp " ,
58
- "iosfwd" : " cpp " ,
59
- "istream " : " cpp " ,
60
- "limits " : " cpp " ,
61
- "mutex " : " cpp " ,
62
- "new" : " cpp " ,
63
- "ostream" : " cpp " ,
64
- "ranges " : " cpp " ,
65
- "sstream " : " cpp " ,
66
- "stdexcept " : " cpp " ,
67
- "stop_token" : " cpp " ,
68
- "streambuf" : " cpp " ,
69
- "thread " : " cpp " ,
70
- "cinttypes " : " cpp " ,
71
- "typeinfo " : " cpp " ,
72
- "variant" : " cpp "
73
- }
2
+ "platformio-ide.toolbar " : [
3
+ {
4
+ "text " : " $(home) " ,
5
+ "tooltip" : " PlatformIO: Home " ,
6
+ "commands " : " platformio-ide.showHome "
7
+ },
8
+ {
9
+ "text " : " $(trash) " ,
10
+ "tooltip " : " PlatformIO: Clean " ,
11
+ "commands " : " platformio-ide.clean "
12
+ } ,
13
+ {
14
+ "text " : " $(check) " ,
15
+ "tooltip " : " PlatformIO: Build " ,
16
+ "commands " : " platformio-ide.build "
17
+ } ,
18
+ {
19
+ "text " : " Upload " ,
20
+ "tooltip " : " PlatformIO: Flash firmware (NO build run) " ,
21
+ "commands " : [
22
+ {
23
+ "id " : " platformio-ide.runPIOCoreCommand " ,
24
+ "args " : " pio run -t nobuild -t factory_flash -e ${command:platformio-ide.activeEnvironment} "
25
+ }
26
+ ]
27
+ } ,
28
+ {
29
+ "text " : " $(zap) " ,
30
+ "tooltip " : " PlatformIO: Build and Upload " ,
31
+ "commands " : " platformio-ide.upload "
32
+ } ,
33
+ {
34
+ "text " : " $(flame) " ,
35
+ "tooltip " : " PlatformIO: Build, Erase and Upload " ,
36
+ "commands " : [
37
+ {
38
+ "id " : " platformio-ide.runPIOCoreCommand " ,
39
+ "args " : " pio run -t erase_upload -e ${command:platformio-ide.activeEnvironment} "
40
+ }
41
+ ]
42
+ } ,
43
+ {
44
+ "text " : " $(error) " ,
45
+ "tooltip " : " PlatformIO: Erase Flash " ,
46
+ "commands " : [
47
+ {
48
+ "id " : " platformio-ide.runPIOCoreCommand " ,
49
+ "args " : " pio run -t nobuild -t erase -e ${command:platformio-ide.activeEnvironment} "
50
+ }
51
+ ]
52
+ } ,
53
+ {
54
+ "text " : " $(arrow-right) " ,
55
+ "tooltip " : " PlatformIO: Build, Upload and Monitor " ,
56
+ "commands " : " platformio-ide.uploadAndMonitor "
57
+ } ,
58
+ {
59
+ "text " : " $(device-desktop) " ,
60
+ "tooltip " : " PlatformIO: Serial Monitor " ,
61
+ "commands " : " platformio-ide.serialMonitor "
62
+ } ,
63
+ {
64
+ "text " : " $(terminal) " ,
65
+ "tooltip " : " PlatformIO: New Terminal " ,
66
+ "commands " : " platformio-ide.newTerminal "
67
+ } ,
68
+ {
69
+ "text " : " $(refresh) " ,
70
+ "tooltip " : " PlatformIO: Rebuild IntelliSense Index " ,
71
+ "commands " : " platformio-ide.rebuildProjectIndex "
72
+ }
73
+ ]
74
74
}
0 commit comments