From 0cde190b4a397f1f340ce71c4451c2aac434afc9 Mon Sep 17 00:00:00 2001 From: Tomasz Godzik Date: Thu, 23 May 2024 14:35:03 +0200 Subject: [PATCH] chore: Add autoImportBuild option --- packages/metals-vscode/package.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/metals-vscode/package.json b/packages/metals-vscode/package.json index cc1cb581..912611d5 100644 --- a/packages/metals-vscode/package.json +++ b/packages/metals-vscode/package.json @@ -438,6 +438,16 @@ "type": "boolean", "default": false, "markdownDescription": "Default to using build tool as your build server." + }, + "metals.autoImportBuild": { + "type": "string", + "default": "off", + "enum": [ + "off", + "initial", + "all" + ], + "markdownDescription": "Automatically import builds rather than prompting the user to choose. `initial` will only automatically import a build when a project is first opened, `all` will automate build imports after subsequent changes as well." } } },