From c51f5992b256e4a5ec0daff8c4ca2c0b01964a0e Mon Sep 17 00:00:00 2001 From: Aluriak Date: Sat, 10 Sep 2016 01:20:29 +0200 Subject: [PATCH] add support for turtle (.ttl) files --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 8b8c297..c8f8970 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -422,6 +422,7 @@ let s:delimiterMap = { \ 'tsalt': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'tsscl': { 'left': '#' }, \ 'tssgm': { 'left': "comment = '", 'right': "'" }, + \ 'ttl': { 'left': '#' }, \ 'tup': { 'left': '#' }, \ 'twig': { 'left': '{#', 'right': '#}' }, \ 'txt2tags': { 'left': '%' },