Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HashiCorp HCL / HashiCorp Terraform schemes #166

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@
- [shell-bash] add functions to outlined list
- [markdown] added the ability to connect the backlight in 'code' by creating your own scheme 'markdown2:markdown2'
- [markdown] highlight special all caps HTML tags
- [hcl] add a new schema for HashiCorp HCL
- [terraform] add a new schema for HashiCorp Terraform

## [1.2.0] - 2021-09-12

Expand Down
10 changes: 10 additions & 0 deletions hrc/hrc/proto.hrc
Original file line number Diff line number Diff line change
Expand Up @@ -733,6 +733,16 @@
<filename weight='1'>/\.y$/i</filename>
</prototype>

<!-- HashiCorp scripts -->
<prototype name="hcl" group="scripts" description="HashiCorp HCL">
<location link="scripts/hcl/hcl.hrc"/>
<filename>/\.hcl$/i</filename>
</prototype>
<prototype name="terraform" group="scripts" description="HashiCorp Terraform">
<location link="scripts/hcl/terraform.hrc"/>
<filename>/\.tf$/i</filename>
<filename>/\.tfvars$/i</filename>
</prototype>

<prototype name="delphiform" group="scripts" description="Delphi form">
<location link="scripts/dfm.hrc" />
Expand Down
Loading