Skip to content

Commit

Permalink
Add completion for line_ending and rename_instances settings
Browse files Browse the repository at this point in the history
  • Loading branch information
DervexDev committed Sep 8, 2024
1 parent 3266e46 commit 861ea44
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 `line_ending` and `rename_instances` settings

## [2.0.12] - 2024-08-21

### Added
Expand Down
10 changes: 10 additions & 0 deletions src/completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,16 @@ const SETTINGS = [
value: "${1|false,true|}",
doc: "Use .lua file extension instead of .luau when writing scripts",
},
{
field: "line_ending",
value: "${1|LF,CRLF,CR|}",
doc: "Line ending to use when writing files (LF, CRLF, CR)",
},
{
field: "rename_instances",
value: "${1|true,false|}",
doc: "Automatically rename corrupted or duplicate instances when syncing back",
},
{
field: "move_to_bin",
value: "${1|false,true|}",
Expand Down

0 comments on commit 861ea44

Please sign in to comment.