From d2e21d417f6c788b11ae3b90d7ac478930dead36 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Sun, 13 Aug 2023 00:12:53 +0200 Subject: [PATCH] feat: Add delimiter for HCL files (#525) --- autoload/nerdcommenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/nerdcommenter.vim b/autoload/nerdcommenter.vim index 6ad9558..25634a3 100644 --- a/autoload/nerdcommenter.vim +++ b/autoload/nerdcommenter.vim @@ -161,6 +161,7 @@ let s:delimiterMap = { \ 'haxe': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'hb': { 'left': '#' }, \ 'hbs': { 'left': '{{!-- ', 'right': ' --}}' }, + \ 'hcl': { 'left': '#', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'hercules': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'hive': { 'left': '-- ' }, \ 'hocon': { 'left': '//', 'leftAlt': '#' },