From 97c3e1a7949743eb5b89839ef381c3979f5019fd Mon Sep 17 00:00:00 2001 From: Xiangyu Xu Date: Mon, 4 Jan 2021 03:01:43 -0600 Subject: [PATCH] remove extra space --- plugin/NERD_commenter.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index ab7817f4..f83728ed 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -343,8 +343,8 @@ let s:delimiterMap = { \ 'ptcap': { 'left': '#' }, \ 'pug': { 'left': '//-', 'leftAlt': '//' }, \ 'puppet': { 'left': '#' }, - \ 'pyrex': { 'left': '# ', 'leftAlt': '#' }, - \ 'python': { 'left': '# ', 'leftAlt': '#' }, + \ 'pyrex': { 'left': '#', 'leftAlt': '#' }, + \ 'python': { 'left': '#', 'leftAlt': '#' }, \ 'r': { 'left': '#', 'leftAlt': '#''' }, \ 'racket': { 'left': ';', 'nested': 1, 'leftAlt': '#|', 'rightAlt': '|#', 'nestedAlt': 1 }, \ 'radiance': { 'left': '#' },