From 0804fd817385be615ca6bd3304f20cb0a979b24b Mon Sep 17 00:00:00 2001 From: hj Date: Wed, 23 Oct 2024 22:42:06 +0800 Subject: [PATCH] Outdated command title --- docs/editor/debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/editor/debugging.md b/docs/editor/debugging.md index ce2019f3c0..6e4aa1155d 100644 --- a/docs/editor/debugging.md +++ b/docs/editor/debugging.md @@ -161,7 +161,7 @@ Once a debug session starts, the **Debug toolbar** will appear on the top of the ### Run mode -In addition to debugging a program, VS Code supports **running** the program. The **Debug: Run (Start Without Debugging)** action is triggered with `kb(workbench.action.debug.run)` and uses the currently selected launch configuration. Many of the launch configuration attributes are supported in 'Run' mode. VS Code maintains a debug session while the program is running, and pressing the **Stop** button terminates the program. +In addition to debugging a program, VS Code supports **running** the program. The **Debug: Start Without Debugging** action is triggered with `kb(workbench.action.debug.run)` and uses the currently selected launch configuration. Many of the launch configuration attributes are supported in 'Run' mode. VS Code maintains a debug session while the program is running, and pressing the **Stop** button terminates the program. >**Tip**: The **Run** action is always available, but not all debugger extensions support 'Run'. In this case, 'Run' will be the same as 'Debug'.