diff --git a/autoload/SpaceVim/mapping/space.vim b/autoload/SpaceVim/mapping/space.vim index febb9b889..c6f847131 100644 --- a/autoload/SpaceVim/mapping/space.vim +++ b/autoload/SpaceVim/mapping/space.vim @@ -81,8 +81,8 @@ function! SpaceVim#mapping#space#init() abort nnoremap CommentToLine :call comment_to_line(0) nnoremap CommentToLineInvert :call comment_to_line(1) - call SpaceVim#mapping#space#def('nmap', ['c', 't'], 'CommentToLine', 'comment to line', 0, 1) - call SpaceVim#mapping#space#def('nmap', ['c', 'T'], 'CommentToLineInvert', 'toggle comment to line', 0, 1) + call SpaceVim#mapping#space#def('nmap', ['c', 't'], 'CommentToLine', 'comment until the line', 0, 1) + call SpaceVim#mapping#space#def('nmap', ['c', 'T'], 'CommentToLineInvert', 'toggle comment until the line', 0, 1) nnoremap CommentOperator :set opfunc=commentOperatorg@ let g:_spacevim_mappings_space[';'] = ['call feedkeys("\CommentOperator")', 'comment operator'] @@ -336,7 +336,7 @@ function! s:commentOperator(type, ...) endfunction function! s:comment_to_line(invert) abort - let input = input('line number :') + let input = input('line number: ') if empty(input) return endif