diff --git a/autoload/SpaceVim/layers/edit.vim b/autoload/SpaceVim/layers/edit.vim index 398aef9b9..bf6010c0d 100644 --- a/autoload/SpaceVim/layers/edit.vim +++ b/autoload/SpaceVim/layers/edit.vim @@ -49,7 +49,7 @@ function! SpaceVim#layers#edit#config() abort let g:_spacevim_mappings_space.x.i = {'name' : '+change symbol style'} nnoremap CountSelectionRegion :call count_selection_region() xnoremap CountSelectionRegion :call count_selection_region() - call SpaceVim#mapping#space#def('nmap', ['x', 'c'], 'CountSelectionRegion', 'cunt in the selection region', 0, 1) + call SpaceVim#mapping#space#def('nmap', ['x', 'c'], 'CountSelectionRegion', 'count in the selection region', 0, 1) call SpaceVim#mapping#space#def('nnoremap', ['x', 'a', '&'], 'Tabularize /&', 'align region at &', 1) call SpaceVim#mapping#space#def('nnoremap', ['x', 'a', '('], 'Tabularize /(', 'align region at (', 1) call SpaceVim#mapping#space#def('nnoremap', ['x', 'a', ')'], 'Tabularize /)', 'align region at )', 1) diff --git a/docs/documentation.md b/docs/documentation.md index ec5ce1f4d..0f85244e4 100644 --- a/docs/documentation.md +++ b/docs/documentation.md @@ -1195,7 +1195,7 @@ Text related commands (start with `x`): | `SPC x a L` | right-align with evil-lion (TODO) | | `SPC x a r` | align region using user-specified regexp (TODO) | | `SPC x a m` | align region at arithmetic operators `(+-*/)` (TODO) | -| `SPC x c` | cunt the number of chars/words/lines in the selection region | +| `SPC x c` | count the number of chars/words/lines in the selection region | | `SPC x d w` | delete trailing whitespaces | | `SPC x d SPC` | Delete all spaces and tabs around point, leaving one space | | `SPC x g l` | set lanuages used by translate commands (TODO) |