Update java instructions now YCM has nice API for it
This commit is contained in:
parent
3bf461c621
commit
ccf427a7c8
4 changed files with 107 additions and 31 deletions
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"adapters": {
|
||||
"java-debug-server": {
|
||||
"name": "vscode-java",
|
||||
"port": "ask"
|
||||
}
|
||||
},
|
||||
"configurations": {
|
||||
"Java Launch": {
|
||||
"adapter": "java-debug-server",
|
||||
"adapter": "vscode-java",
|
||||
"configuration": {
|
||||
"request": "launch",
|
||||
"mainClass": "com.vimspector.test.TestApplication",
|
||||
|
|
@ -18,6 +12,16 @@
|
|||
"console": "integratedTerminal"
|
||||
}
|
||||
},
|
||||
"Java Attach": {
|
||||
"adapter": "vscode-java",
|
||||
"configuration": {
|
||||
"request": "attach",
|
||||
"sourcePaths": [ "${workspaceRoot}/src/main/java" ],
|
||||
"stopOnEntry": true,
|
||||
"hostName": "localhost",
|
||||
"port": "${JVMDebugPort}"
|
||||
}
|
||||
},
|
||||
"Attach with vscode-javac": {
|
||||
"adapter": "vscode-javac",
|
||||
"configuration": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue