Add support for terraform files

Terraform files are used to define different resources. Single line comments use a '#' and multi-line comments use '/* ... */'. For more information, see https://terraform.io/docs/configuration/syntax.html.
This commit is contained in:
Chris Linstid 2015-12-14 15:11:46 -05:00
parent 1f4bfd5992
commit 92de964f61

View File

@ -366,6 +366,7 @@ let s:delimiterMap = {
\ 'tak': { 'left': '$' },
\ 'tasm': { 'left': ';' },
\ 'tcl': { 'left': '#' },
\ 'terraform': { 'left': '#', 'leftAlt': '/*', 'rightAlt': '*/' },
\ 'texinfo': { 'left': "@c " },
\ 'texmf': { 'left': '%' },
\ 'tf': { 'left': ';' },