Skip to content

Commit c825605

Browse files
committed
Fix comments for templates
1 parent 94617d9 commit c825605

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pico_project.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,6 +1128,7 @@ def generateProjectFiles(projectPath, projectName, sdkPath, projects, debugger):
11281128

11291129
for p in projects :
11301130
if p == 'vscode':
1131+
# Visual Studio Code launch configurations
11311132
launch = f'''{{
11321133
"version": "0.2.0",
11331134
"configurations": [
@@ -1198,6 +1199,7 @@ def generateProjectFiles(projectPath, projectName, sdkPath, projects, debugger):
11981199
}}
11991200
'''
12001201

1202+
# cpp-tools extension settings
12011203
properties = f'''{{
12021204
"configurations": [
12031205
{{
@@ -1219,7 +1221,7 @@ def generateProjectFiles(projectPath, projectName, sdkPath, projects, debugger):
12191221
'''
12201222

12211223

1222-
# settings
1224+
# Visual Studio Code settings
12231225
settings = f'''{{
12241226
"cmake.statusbar.advanced": {{
12251227
"debug": {{
@@ -1245,7 +1247,7 @@ def generateProjectFiles(projectPath, projectName, sdkPath, projects, debugger):
12451247
}}
12461248
'''
12471249

1248-
# extensions
1250+
# recommended Visual Studio Code extensions
12491251
extensions = f'''{{
12501252
"recommendations": [
12511253
"marus25.cortex-debug",

0 commit comments

Comments
 (0)