From 8228c7b0a7aa46b7846f7bf21bcb89ce24b9c20e Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Fri, 13 Sep 2019 14:30:20 +0300 Subject: [PATCH] Add comment syntax for FTL (Fluent) filetype --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 0e27d24..6e44a3c 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -181,6 +181,7 @@ let s:delimiterMap = { \ 'foxpro': { 'left': '*' }, \ 'fsharp': { 'left': '(*', 'right': '*)', 'leftAlt': '//' }, \ 'fstab': { 'left': '#' }, + \ 'ftl': { 'left': '#', 'leftAlt': '##' }, \ 'fvwm': { 'left': '#' }, \ 'fx': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'gams': { 'left': '*' },