Skip to content

Commit 737e6e9

Browse files
authored
Initialize the project setting page (#1323)
* Introduce a new command 'Open Project Settings' to open the new Project Setting Page. * 'Configure Classpath' command will open the new page and focus the Classpath section. * 'Configure Java Runtime' command will open the new page, focus the JDK tab under the Classpath section.
1 parent 41cbd10 commit 737e6e9

32 files changed

+1368
-1103
lines changed

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
"onCommand:java.showReleaseNotes",
6060
"onWebviewPanel:java.overview",
6161
"onCommand:java.runtime",
62-
"onWebviewPanel:java.runtime",
6362
"onCommand:java.gettingStarted",
6463
"onWebviewPanel:java.gettingStarted",
6564
"onCommand:java.extGuide",
@@ -69,15 +68,16 @@
6968
"onCommand:java.installJdk",
7069
"onWebviewPanel:java.installJdk",
7170
"onCommand:java.classpathConfiguration",
72-
"onWebviewPanel:java.classpathConfiguration",
71+
"onCommand:java.projectSettings",
72+
"onWebviewPanel:java.projectSettings",
7373
"onCommand:java.formatterSettings",
7474
"onWalkthrough:javaWelcome"
7575
],
7676
"contributes": {
7777
"javaShortcuts": [
7878
{
7979
"title": "$(project) Open Project Settings",
80-
"command": "java.classpathConfiguration"
80+
"command": "java.projectSettings"
8181
}
8282
],
8383
"walkthroughs": [
@@ -181,6 +181,11 @@
181181
"category": "Java",
182182
"title": "Configure Classpath"
183183
},
184+
{
185+
"command": "java.projectSettings",
186+
"category": "Java",
187+
"title": "Open Project Settings"
188+
},
184189
{
185190
"command": "java.overview",
186191
"category": "Java",

src/classpath/assets/App.tsx

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/classpath/assets/app/store.ts

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/classpath/assets/features/classpathConfiguration/classpathConfigurationViewSlice.ts

Lines changed: 0 additions & 111 deletions
This file was deleted.

src/classpath/assets/utils.ts

Lines changed: 0 additions & 114 deletions
This file was deleted.

0 commit comments

Comments
 (0)