Merge branch 'master' of github.com:spring-projects/sts4
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user