Skip to content

Commit 999396f

Browse files
committed
Link to VSCode's own debugging docs
1 parent 9551da5 commit 999396f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

programming/editors/vscode.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,15 @@ to VSCode and select **Run** > **Start Debugging** or press <kbd>F5</kbd>.
179179

180180
VSCode will attach to your code, paused at the `breakpoint()` line.
181181

182-
A full tutorial of debugging in VSCode is beyond the scope of this article,
183-
though the most common commands (all available from the **Run** menu) are:
182+
A full tutorial of [debugging in VSCode][vscode-debugging] is beyond the scope
183+
of this article, though the most common commands (all available from the **Run**
184+
menu) are:
184185

185186
* Step Over (<kbd>F10</kbd>)
186187
* Step Into (<kbd>F11</kbd>)
187188
* Step Out (<kbd>Shift</kbd> + <kbd>F11</kbd>)
188189
* Continue (<kbd>F5</kbd>)
189190

190191
You can also inspect the values of variables in your code by hovering over them.
192+
193+
[vscode-debugging]: https://code.visualstudio.com/docs/editor/debugging

0 commit comments

Comments
 (0)