From fdf950f20b3907c6a6fa0bc5c7ac0aeb567841dd Mon Sep 17 00:00:00 2001 From: keysen Date: Tue, 31 Jul 2018 19:29:13 +0200 Subject: [PATCH] Fix ruby comments, totally broken with =begin and =end (#340) --- 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 ee827cd..614b9d2 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -364,7 +364,7 @@ let s:delimiterMap = { \ 'robot': { 'left': '#' }, \ 'robots': { 'left': '#' }, \ 'rspec': { 'left': '#' }, - \ 'ruby': { 'left': '#', 'leftAlt': '=begin', 'rightAlt': '=end' }, + \ 'ruby': { 'left': '#' }, \ 'rust': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'sa': { 'left': '--' }, \ 'samba': { 'left': ';', 'leftAlt': '#' },