From a43fe270f87428ab2cf9eaac08334b5c2938a2d7 Mon Sep 17 00:00:00 2001 From: techgaun Date: Wed, 19 Sep 2018 14:50:19 -0500 Subject: [PATCH] add mapping for NERDCommenterSexy --- autoload/SpaceVim/layers/core.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/SpaceVim/layers/core.vim b/autoload/SpaceVim/layers/core.vim index e06dc5895..cbf4bf672 100644 --- a/autoload/SpaceVim/layers/core.vim +++ b/autoload/SpaceVim/layers/core.vim @@ -229,6 +229,7 @@ function! SpaceVim#layers#core#config() abort call SpaceVim#mapping#space#def('nmap', ['c', 'v'], 'NERDCommenterInvertgv', 'comment or uncomment lines and keep visual', 0, 1) call SpaceVim#mapping#space#def('nmap', ['c', 'p'], 'vipNERDCommenterComment', 'comment paragraphs', 0, 1) call SpaceVim#mapping#space#def('nmap', ['c', 'P'], 'vipNERDCommenterInvert', 'toggle comment paragraphs', 0, 1) + call SpaceVim#mapping#space#def('nmap', ['c', 's'], 'NERDCommenterSexy', 'comment with sexy/pretty layout', 0, 1) nnoremap CommentToLine :call comment_to_line(0) nnoremap CommentToLineInvert :call comment_to_line(1)