From e48cc752f32a595274c63ca31ff0580aed854a65 Mon Sep 17 00:00:00 2001 From: ARM9 Date: Thu, 26 May 2016 16:25:29 +0200 Subject: [PATCH] Fix rust Alt comments (#248) --- 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 7df5afa..b07130d 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -348,7 +348,7 @@ let s:delimiterMap = { \ 'robots': { 'left': '#' }, \ 'rspec': { 'left': '#' }, \ 'ruby': { 'left': '#', 'leftAlt': '=begin', 'rightAlt': '=end' }, - \ 'rust': { 'left': '//', 'leftAlt': '///', 'rightAlt': '///' }, + \ 'rust': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'sa': { 'left': '--' }, \ 'samba': { 'left': ';', 'leftAlt': '#' }, \ 'sass': { 'left': '//', 'leftAlt': '/*' },