first steps towards symbol in file navigation for spring annotations

This commit is contained in:
Martin Lippert
2017-07-21 16:41:04 +02:00
parent 4342b237ed
commit a4defe091a
6 changed files with 200 additions and 7 deletions

View File

@@ -3,14 +3,17 @@
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"name": "Launch Extension",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/lib"],
"outFiles": [
"${workspaceRoot}/out/**/*.js"
],
"preLaunchTask": "npm"
},
{

View File

@@ -1,7 +1,7 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": true, // set this to true to hide the "out" folder with the compiled JS files
"out": false, // set this to true to hide the "out" folder with the compiled JS files
"node_modules": false,
"target": true
},

View File

@@ -22,7 +22,6 @@
"java", "spring-boot"
],
"activationEvents": [
"onLanguage:ini",
"onLanguage:java"
],
"main": "./out/lib/Main",