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'.