From 32758ff7bcf4479f56dfc7b1447c54f7db9bb130 Mon Sep 17 00:00:00 2001 From: Dervex Date: Thu, 22 Aug 2024 00:31:13 +0200 Subject: [PATCH] Add completion for new config fields --- CHANGELOG.md | 4 ++++ src/completion.ts | 10 ++++++++++ 2 files changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44635bc..237cb6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ## [Unreleased] +### Added + +- Completion for new settings in Argon's global and workspace config + ### Fixed - Automatic updates on extension startup work again (`invalid value` error) diff --git a/src/completion.ts b/src/completion.ts index b0a169d..76546f9 100644 --- a/src/completion.ts +++ b/src/completion.ts @@ -52,6 +52,11 @@ const SETTINGS = [ value: "${1|true,false|}", doc: "Automatically detect project type", }, + { + field: "smart_paths", + value: "${1|false,true|}", + doc: "Use smart path resolver when running commands", + }, { field: "with_sourcemap", value: "${1|false,true|}", @@ -77,6 +82,11 @@ const SETTINGS = [ value: "${1|true,false|}", doc: "Install Roblox plugin locally and keep it updated", }, + { + field: "update_templates", + value: "${1|true,false|}", + doc: "Update default project templates when available", + }, { field: "rojo_mode", value: "${1|false,true|}",