Skip to content

Commit 3d7937f

Browse files
grdownssean-mcmanus
authored andcommitted
Grdowns/launch configs (#3215)
* Implement debug configurations that will build the active C/C++ file and launch a debugger (disabled) * Handle compilerPath in build and squiggles.
1 parent 98260f9 commit 3d7937f

File tree

11 files changed

+403
-111
lines changed

11 files changed

+403
-111
lines changed

Extension/package-lock.json

Lines changed: 41 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Extension/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1420,10 +1420,11 @@
14201420
},
14211421
"devDependencies": {
14221422
"@types/mocha": "^5.2.6",
1423-
"@types/node": "^8.0.46",
1424-
"await-notify": "^1.0.1",
1423+
"@types/node": "^8.10.40",
14251424
"async-child-process": "^1.1.1",
1425+
"await-notify": "^1.0.1",
14261426
"child-process": "^1.0.2",
1427+
"extend": "3.0.2",
14271428
"gulp": "^4.0.0",
14281429
"gulp-env": "0.4.0",
14291430
"gulp-mocha": "5.0.0",
@@ -1432,10 +1433,9 @@
14321433
"tslint": "5.8.0",
14331434
"tslint-microsoft-contrib": "5.0.1",
14341435
"tslint-no-unused-expression-chai": "0.0.3",
1435-
"typescript": "^2.5.3",
1436-
"vrsource-tslint-rules": "^5.8.2",
1437-
"vscode": "^1.1.29",
1438-
"extend": "3.0.2"
1436+
"typescript": "^2.9.2",
1437+
"vrsource-tslint-rules": "^5.8.3",
1438+
"vscode": "^1.1.30"
14391439
},
14401440
"dependencies": {
14411441
"@types/minimatch": "^3.0.3",
@@ -1448,7 +1448,7 @@
14481448
"vscode-cpptools": "2.1.1",
14491449
"vscode-debugadapter": "~1.33.0",
14501450
"vscode-debugprotocol": "~1.33.0",
1451-
"vscode-extension-telemetry": "~0.1.0",
1451+
"vscode-extension-telemetry": "^0.1.1",
14521452
"vscode-languageclient": "5.1.1",
14531453
"yauzl": "~2.10.0"
14541454
},

Extension/package.nls.it.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414
"c_cpp.command.pauseParsing.title": "Metti in pausa l'analisi del codice",
1515
"c_cpp.command.resumeParsing.title": "Riprendi l'analisi del codice",
1616
"c_cpp.command.showParsingCommands.title": "Mostra comandi per l'analisi del codice",
17-
"c_cpp.command.takeSurvey.title": "Partecipa al Sondaggio"
17+
"c_cpp.command.takeSurvey.title": "Partecipa al Sondaggio",
18+
"c_cpp.command.buildAndDebugActiveFile.title": "Compila ed Esegui il debug del file attivo"
1819
}

Extension/package.nls.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"c_cpp.command.configurationSelect.title": "Select a configuration...",
33
"c_cpp.command.configurationProviderSelect.title": "Change configuration provider...",
44
"c_cpp.command.configurationEdit.title": "Edit configurations...",
5-
"c_cpp.command.goToDeclaration.title": "Go to declaration",
6-
"c_cpp.command.peekDeclaration.title": "Peek declaration",
5+
"c_cpp.command.goToDeclaration.title": "Go to Declaration",
6+
"c_cpp.command.peekDeclaration.title": "Peek Declaration",
77
"c_cpp.command.switchHeaderSource.title": "Switch Header/Source",
88
"c_cpp.command.navigate.title": "Navigate...",
99
"c_cpp.command.toggleErrorSquiggles.title": "Toggle error squiggles",
@@ -14,5 +14,6 @@
1414
"c_cpp.command.pauseParsing.title": "Pause parsing",
1515
"c_cpp.command.resumeParsing.title": "Resume parsing",
1616
"c_cpp.command.showParsingCommands.title": "Show parsing commands",
17-
"c_cpp.command.takeSurvey.title": "Take survey"
17+
"c_cpp.command.takeSurvey.title": "Take survey",
18+
"c_cpp.command.buildAndDebugActiveFile.title": "Build and Debug Active File"
1819
}

Extension/package.nls.zh-cn.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414
"c_cpp.command.pauseParsing.title": "暂停解析",
1515
"c_cpp.command.resumeParsing.title": "继续解析",
1616
"c_cpp.command.showParsingCommands.title": "查看解析命令",
17-
"c_cpp.command.takeSurvey.title": "调查问卷"
17+
"c_cpp.command.takeSurvey.title": "调查问卷",
18+
"c_cpp.command.buildAndDebugActiveFile.title": "生成和调试当前文件"
1819
}

0 commit comments

Comments
 (0)