├── .github └── workflows │ └── test.yml ├── .gitignore ├── Changes ├── LICENSE ├── Makefile ├── README.md ├── hcl-mode.el ├── image └── hcl-mode.png └── test ├── test-command.el ├── test-helper.el ├── test-highlighting.el └── test-indentation.el /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.cask 2 | *.elc 3 | -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/Changes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/README.md -------------------------------------------------------------------------------- /hcl-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/hcl-mode.el -------------------------------------------------------------------------------- /image/hcl-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/image/hcl-mode.png -------------------------------------------------------------------------------- /test/test-command.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/test/test-command.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/test/test-helper.el -------------------------------------------------------------------------------- /test/test-highlighting.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/test/test-highlighting.el -------------------------------------------------------------------------------- /test/test-indentation.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hcl-emacs/hcl-mode/HEAD/test/test-indentation.el --------------------------------------------------------------------------------