From 58e34664d2854396ff5778c887478652daf3e172 Mon Sep 17 00:00:00 2001 From: Jeremy Huffman Date: Mon, 25 Mar 2013 22:02:46 -0400 Subject: [PATCH] add elixir language support --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 13c7693..0bc6d41 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -147,6 +147,7 @@ let s:delimiterMap = { \ 'eclass': { 'left': '#' }, \ 'eiffel': { 'left': '--' }, \ 'elf': { 'left': "'" }, + \ 'elixir': { 'left': '#' }, \ 'elmfilt': { 'left': '#' }, \ 'erlang': { 'left': '%', 'leftAlt': '%%' }, \ 'eruby': { 'left': '<%#', 'right': '%>', 'leftAlt': '' },