我想插入换行在正常模式下的 vim 使用 Shift-Enter和 Ctrl-Enter。我尝试了一些来自 Vim Wikia-不进入插入模式插入换行符的溶液和混合溶液,但是 Shift-Enter和 Ctrl-Enter没有反应:
" put a new line before or after to this line
nnoremap <S-CR> m`o<Esc>``
nnoremap <C-CR> m`O<Esc>``
" reverse J command
nnoremap <C-J> vaW<Esc>Bi<CR><Esc>k:s/\s\+$//<CR>$