Skip to content

Commit d12c832

Browse files
committed
change button description
1 parent 5355244 commit d12c832

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Extension/package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
"c_cpp.configuration.debugger.useBacktickCommandSubstitution.markdownDescription": { "message": "If `true`, debugger shell command substitution will use obsolete backtick ``(`)``.", "comment": [ "Markdown text between `` should not be translated or localized (they represent literal text) and the capitalization, spacing, and punctuation (including the ``) should not be altered." ] },
212212
"c_cpp.contributes.views.cppReferencesView.title": "C/C++: Other references results.",
213213
"c_cpp.contributes.viewsWelcome.contents": { "message": "To learn more about launch.json, see [Configuring C/C++ debugging](https://code.visualstudio.com/docs/cpp/launch-json-reference).", "comment": [ "Markdown text between () should not be altered: https://en.wikipedia.org/wiki/Markdown" ] },
214-
"c_cpp.configuration.debugShortcut.description": "Show icon for 'Debug and Run' in shortcut menu bar",
214+
"c_cpp.configuration.debugShortcut.description": "Show the Run and Debug play button in the editor title bar for C++ files",
215215
"c_cpp.debuggers.pipeTransport.description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the MI-enabled debugger backend executable (such as gdb).",
216216
"c_cpp.debuggers.pipeTransport.default.pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'.",
217217
"c_cpp.debuggers.pipeTransport.default.debuggerPath": "The full path to the debugger on the target machine, for example /usr/bin/gdb.",

Extension/src/Debugger/configurationProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class DebugConfigurationProvider implements vscode.DebugConfigurationProv
6767
// Find the recently used task and place it at the top of quickpick list.
6868
let recentlyUsedConfig: vscode.DebugConfiguration | undefined;
6969
configs = configs.filter(config => {
70-
if (config.detail !== TaskConfigStatus.recentlyUsed) {
70+
if (config.existing !== TaskConfigStatus.recentlyUsed) {
7171
return true;
7272
} else {
7373
recentlyUsedConfig = config;

0 commit comments

Comments
 (0)