dotfiles/files/vim/.vim/commands.vim
2020-11-01 21:25:24 -05:00

11 lines
218 B
VimL

"custom commands
"---------------{{{
"common typos and abbreviations
cnoremap w!! w !sudo tee % > /dev/null
command! W w !sudo tee % > /dev/null
command! Trim %s/\s\+$//
command! Q q
command! WQ wq
command! Q1 q!
"}}}