From 41e686824a5b77ba5afe9c5dabdc045aac922c5a Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 27 Feb 2017 22:04:50 -0800 Subject: [PATCH] Add support for the meson build system. (#289) --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 5bc8898..250b041 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -271,6 +271,7 @@ let s:delimiterMap = { \ 'master': { 'left': '$' }, \ 'matlab': { 'left': '%', 'leftAlt': '%{', 'rightAlt': '%}' }, \ 'mel': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, + \ 'meson': { 'left': '#' }, \ 'mib': { 'left': '--' }, \ 'mips': { 'left': '#'}, \ 'mirah': {'left': '#'},