branch: elpa/yasnippet-snippets commit 46945ccf63122190dc564af4ec26f828eaa29b43 Author: Guilherme <thom...@linux.com> Commit: GitHub <nore...@github.com>
add import snippet to terraform-mode (#508) https://developer.hashicorp.com/terraform/language/import#syntax --- snippets/terraform-mode/import | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/snippets/terraform-mode/import b/snippets/terraform-mode/import new file mode 100644 index 0000000000..5d793d77f2 --- /dev/null +++ b/snippets/terraform-mode/import @@ -0,0 +1,9 @@ +# -*- mode: snippet -*- +# name: import +# key: import +# -- + +import { + to = "${1:to}" + id = "${2:id}" +}