Skip to content

Commit 6920439

Browse files
committed
GH-1557: enable hierarchical document symbols and workspace symbols from new index by default
1 parent 23ddf88 commit 6920439

File tree

2 files changed

+3
-3
lines changed
  • eclipse-language-servers/org.springframework.tooling.boot.ls/src/org/springframework/tooling/boot/ls/prefs
  • vscode-extensions/vscode-spring-boot

2 files changed

+3
-3
lines changed

eclipse-language-servers/org.springframework.tooling.boot.ls/src/org/springframework/tooling/boot/ls/prefs/PrefsInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public void initializeDefaultPreferences() {
6565
preferenceStore.setDefault(Constants.PREF_CRON_INLAY_HINTS, true);
6666
preferenceStore.setDefault(Constants.PREF_COMPLETION_JAVA_INJECT_BEAN, true);
6767
preferenceStore.setDefault(Constants.PREF_BEANS_STRUCTURE_TREE, false);
68-
preferenceStore.setDefault(Constants.PREF_SYMBOLS_FROM_NEW_INDEX, false);
68+
preferenceStore.setDefault(Constants.PREF_SYMBOLS_FROM_NEW_INDEX, true);
6969
}
7070

7171
}

vscode-extensions/vscode-spring-boot/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,12 +375,12 @@
375375
},
376376
"boot-java.java.beans-structure-tree": {
377377
"type": "boolean",
378-
"default": false,
378+
"default": true,
379379
"description": "Beans structure tree in the outline view (experimental)"
380380
},
381381
"boot-java.java.symbols-from-new-index": {
382382
"type": "boolean",
383-
"default": false,
383+
"default": true,
384384
"description": "Generate workspace symbols from index (experimental)"
385385
},
386386
"boot-java.remote-apps": {

0 commit comments

Comments
 (0)