This repository has been archived on 2023-01-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mail-config/vim/.vim/_line-shortcuts.vim
2021-06-10 11:46:44 +02:00

12 lines
171 B
VimL

" delete lines until end
nmap <C-d> dG1o
map! <C-d> <ESC>dG1o
" delete current line
nmap <C-s> ddi
map! <C-s> <ESC>ddi
" add empty line
nmap <C-a> 1o
map! <C-a> <ESC>1o