Skip to content

Commit 21df8e7

Browse files
Add TOC to configuration.md (#706)
* Add TOC to configuration.md Signed-off-by: Jinbo Wang <[email protected]> * Add toc details Signed-off-by: Jinbo Wang <[email protected]>
1 parent bbe8e49 commit 21df8e7

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

Configuration.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Java Debug Configuration
22

3+
## Table of Contents
4+
* [Auto generate the launch.json](#auto-generate-the-launchjson)
5+
* [Modify the launch.json](#modify-the-launchjson)
6+
* [Main](#main)
7+
* mainClass
8+
* projectName
9+
* [Arguments](#arguments)
10+
* args
11+
* vmArgs
12+
* [Environment](#environment)
13+
* console
14+
* env
15+
* [Don't step into the specified classes or methods](#dont-step-into-the-specified-classes-or-methods)
16+
* stepFilters
17+
* [Attach to a debuggee](#attach-to-a-debuggee)
18+
* hostName
19+
* port
20+
* [Attach to mvn task](#attach-to-mvn-task)
21+
* [Attach to embedded maven tomcat server](#attach-to-embedded-maven-tomcat-server)
22+
* [Use javac as the builder and attach to java process](#use-javac-as-the-builder-and-attach-to-java-process)
23+
* [Modify the settings.json (User Setting)](#modify-the-settingsjson-user-setting)
24+
* java.debug.settings.console
25+
* java.debug.settings.forceBuildBeforeLaunch
26+
* java.debug.settings.hotCodeReplace
27+
* java.debug.settings.enableRunDebugCodeLens
28+
* [FAQ](#faq)
29+
30+
331
The debugger provides two kinds of configuration: *launch.json* and *settings.json* (User Settings), see the [README](https://github.com/Microsoft/vscode-java-debug#options) for the supported configuration list. launch.json is used to control the configuration per debug session, and the user setting is shared by the whole workspace or VS Code.
432

533
## Auto generate the launch.json

0 commit comments

Comments
 (0)