Merge branch 'master' of github.com:spring-projects/sts4

This commit is contained in:
Kris De Volder
2018-10-24 13:35:31 -07:00
3 changed files with 25 additions and 5 deletions

View File

@@ -34,9 +34,15 @@ export function activate(context: VSCode.ExtensionContext) {
jvmHeap: "48m",
workspaceOptions: VSCode.workspace.getConfiguration("bosh.ls"),
clientOptions: {
documentSelector: [
"bosh-deployment-manifest",
"bosh-cloud-config"
documentSelector: [
{
language: 'bosh-deployment-manifest',
scheme: 'file'
},
{
language: 'bosh-cloud-config',
scheme: 'file'
}
],
synchronize: {
configurationSection: "bosh"

View File

@@ -37,7 +37,16 @@ export function activate(context: VSCode.ExtensionContext) {
jvmHeap: "48m",
workspaceOptions: VSCode.workspace.getConfiguration("concourse.ls"),
clientOptions: {
documentSelector: [ PIPELINE_LANGUAGE_ID, TASK_LANGUAGE_ID ]
documentSelector: [
{
language: PIPELINE_LANGUAGE_ID,
scheme: 'file'
},
{
language: TASK_LANGUAGE_ID,
scheme: 'file'
}
]
}
};
let clientPromise = commons.activate(options, context);

View File

@@ -34,7 +34,12 @@ export function activate(context: VSCode.ExtensionContext) {
workspaceOptions: VSCode.workspace.getConfiguration("cloudfoundry-manifest.ls"),
jvmHeap: '64m',
clientOptions: {
documentSelector: ["manifest-yaml"]
documentSelector: [
{
language: 'manifest-yaml',
scheme: 'file'
}
]
}
};
commons.activate(options, context);