├── .github └── workflows │ └── tests.yml ├── .gitignore ├── Cask ├── Changes ├── LICENSE ├── Makefile ├── README.md ├── image ├── terraform-mode-imenu.png └── terraform-mode.png ├── terraform-mode.el └── test ├── fixtures ├── main.tf └── provider.tf ├── test-command.el ├── test-helper.el ├── test-highlighting.el └── test-indentation.el /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.cask/ -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/Cask -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/Changes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/README.md -------------------------------------------------------------------------------- /image/terraform-mode-imenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/image/terraform-mode-imenu.png -------------------------------------------------------------------------------- /image/terraform-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/image/terraform-mode.png -------------------------------------------------------------------------------- /terraform-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/terraform-mode.el -------------------------------------------------------------------------------- /test/fixtures/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/test/fixtures/main.tf -------------------------------------------------------------------------------- /test/fixtures/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/test/fixtures/provider.tf -------------------------------------------------------------------------------- /test/test-command.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/test/test-command.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/test/test-helper.el -------------------------------------------------------------------------------- /test/test-highlighting.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/test/test-highlighting.el -------------------------------------------------------------------------------- /test/test-indentation.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/terraform-mode/HEAD/test/test-indentation.el --------------------------------------------------------------------------------