From d8e6b4a0dc1d5998ec2192e88d9e097933a5da0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Wellh=C3=B6fer?= Date: Sun, 22 Oct 2023 18:44:04 +0200 Subject: [PATCH] Add delimiters for Alloy files --- autoload/nerdcommenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/nerdcommenter.vim b/autoload/nerdcommenter.vim index 25634a3..7cea396 100644 --- a/autoload/nerdcommenter.vim +++ b/autoload/nerdcommenter.vim @@ -15,6 +15,7 @@ let s:delimiterMap = { \ 'ada': { 'left': '--', 'leftAlt': '-- ' }, \ 'ahdl': { 'left': '--' }, \ 'ahk': { 'left': ';', 'leftAlt': '/*', 'rightAlt': '*/' }, + \ 'alloy': { 'left': '/*', 'right': '*/', 'leftAlt': '//' }, \ 'amiga': { 'left': ';' }, \ 'aml': { 'left': '/*' }, \ 'ampl': { 'left': '#' },