Revert PT 158992999: Boot hints stopped working

This commit is contained in:
BoykoAlex
2018-08-16 14:00:30 -04:00
parent 374b5f0ad7
commit f82a072e6f

View File

@@ -29,20 +29,21 @@ export function activate(context: VSCode.ExtensionContext): Thenable<LanguageCli
},
workspaceOptions: VSCode.workspace.getConfiguration("spring-boot.ls"),
clientOptions: {
documentSelector: [
{
language: PROPERTIES_LANGUAGE_ID,
scheme: 'untitled'
},
{
language: YAML_LANGUAGE_ID,
scheme: 'untitled'
},
{
language: JAVA_LANGUAGE_ID,
scheme: 'untitled'
}
],
documentSelector: [ PROPERTIES_LANGUAGE_ID, YAML_LANGUAGE_ID, JAVA_LANGUAGE_ID ],
// documentSelector: [
// {
// language: PROPERTIES_LANGUAGE_ID,
// scheme: 'untitled'
// },
// {
// language: YAML_LANGUAGE_ID,
// scheme: 'untitled'
// },
// {
// language: JAVA_LANGUAGE_ID,
// scheme: 'untitled'
// }
// ],
synchronize: {
configurationSection: 'boot-java'
},