mirror of
https://github.com/preservim/nerdcommenter.git
synced 2024-11-27 19:06:09 +08:00
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:
parent
1f4bfd5992
commit
92de964f61
|
@ -366,6 +366,7 @@ let s:delimiterMap = {
|
|||
\ 'tak': { 'left': '$' },
|
||||
\ 'tasm': { 'left': ';' },
|
||||
\ 'tcl': { 'left': '#' },
|
||||
\ 'terraform': { 'left': '#', 'leftAlt': '/*', 'rightAlt': '*/' },
|
||||
\ 'texinfo': { 'left': "@c " },
|
||||
\ 'texmf': { 'left': '%' },
|
||||
\ 'tf': { 'left': ';' },
|
||||
|
|
Loading…
Reference in New Issue
Block a user