From ff0b875c8d41a52f88052704c79c0e8c7c66a416 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 24 May 2016 18:02:14 +0300 Subject: [PATCH] Add alt delimiter to R filetype for Roxygen strings --- 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 edc5dc4..c303f64 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -336,7 +336,7 @@ let s:delimiterMap = { \ 'racket': { 'left': ';', 'nested': 1, 'leftAlt': '#|', 'rightAlt': '|#', 'nestedAlt': 1 }, \ 'radiance': { 'left': '#' }, \ 'ratpoison': { 'left': '#' }, - \ 'r': { 'left': '#' }, + \ 'r': { 'left': '#', 'leftAlt': '#''' }, \ 'rc': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'rebol': { 'left': ';' }, \ 'registry': { 'left': ';' },