Skip to content

Commit

Permalink
Add completion for new config fields
Browse files Browse the repository at this point in the history
  • Loading branch information
DervexDev committed Aug 21, 2024
1 parent 27a6bc6 commit 32758ff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
10 changes: 10 additions & 0 deletions src/completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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|}",
Expand All @@ -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|}",
Expand Down

0 comments on commit 32758ff

Please sign in to comment.