From a4b7c046b3d3e170c6f62a6209abfa0760d6694a Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Thu, 26 Sep 2019 14:32:13 +0300 Subject: [PATCH] Fix Fluent file type as set by fluent.vim --- plugin/NERD_commenter.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 705cf1a..12e9476 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -175,13 +175,13 @@ let s:delimiterMap = { \ 'fancy': { 'left': '#' }, \ 'faust': { 'left': '//' }, \ 'fgl': { 'left': '#' }, + \ 'fluent': { 'left': '#', 'leftAlt': '##' }, \ 'focexec': { 'left': '-*' }, \ 'form': { 'left': '*' }, \ 'fortran': { 'left': '!' }, \ 'foxpro': { 'left': '*' }, \ 'fsharp': { 'left': '(*', 'right': '*)', 'leftAlt': '//' }, \ 'fstab': { 'left': '#' }, - \ 'ftl': { 'left': '#', 'leftAlt': '##' }, \ 'fvwm': { 'left': '#' }, \ 'fx': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'gams': { 'left': '*' },