Skip to content

Commit 7d170c6

Browse files
committed
Release 0.0.21 "Auto-completion and fixed format on save"
1 parent 7f6303f commit 7d170c6

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
======
33

44
## What's New
5-
- Format on save is back
5+
- Auto completion support [@ranga543](https://github.com/ranga543)
6+
- Format on save is back (closes #45, #47)
7+
- Tools can now be installed in directories which have spaces [@xeres](https://github.com/xeres)
68

79
### Format on save
810

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020

2121
## Features at a glance
2222

23+
- Autocompletion support
24+
1. `Terraform` high level types `(variable, resource, data, module ...)` auto completion support.
25+
2. `resource` types `(aws_dynamodb_table ...)` auto completion support for `aws, azure & google`
26+
3. `resource | data | module | output | variable` property types auto completion support
27+
4. `resource | data` 1-level nested block property types auto completion support
2328
- Syntax highlightning for `.tf` and `.tfvars` files (and `.hcl`)
2429
- Automatic formatting using `terraform fmt`
2530
- Automatically closes braces and quotes
@@ -38,6 +43,11 @@
3843

3944
![Syntax Highlighting](https://raw.githubusercontent.com/mauve/vscode-terraform/master/images/screenshot.png)
4045

46+
## Auto-completion support
47+
48+
![Auto completion]
49+
(https://raw.githubusercontent.com/mauve/vscode-terraform/master/images/terraform-auto-completion.gif)
50+
4151
## Formatting support
4252

4353
The plugin also ships a formatter integration which uses `terraform fmt` for formatting editors. Formatting can be disabled by setting `terraform.format.enable` to `false`.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
}
147147
},
148148
"default": {
149-
"enabled": false,
149+
"enabled": true,
150150
"indexerPath": "terraform-index",
151151
"liveIndexing": true,
152152
"delay": 500

0 commit comments

Comments
 (0)