diff options
author | Chris <[email protected]> | 2020-05-10 23:27:51 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-05-10 23:28:32 -0400 |
commit | 48e0bde090d18c797b2542fcc4a3b0cbdd524795 (patch) | |
tree | 8e4b758c588211b2dda3678d2d3e466dbc95c76d /general/functions.vim | |
parent | bdad0adcab896789779fae5551a08f1d356f2ec5 (diff) |
which key is stable
Diffstat (limited to 'general/functions.vim')
-rw-r--r-- | general/functions.vim | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/general/functions.vim b/general/functions.vim index a708c61e..58db6b1f 100644 --- a/general/functions.vim +++ b/general/functions.vim @@ -1,11 +1,9 @@ " Turn spellcheck on for markdown files -" augroup auto_spellcheck - " autocmd BufNewFile,BufRead *.md setlocal spell -" augroup END +augroup auto_spellcheck + autocmd BufNewFile,BufRead *.md setlocal spell +augroup END " Remove trailing whitespaces automatically before save " augroup strip_ws - " autocmd BufWritePre * call utils#stripTrailingWhitespaces() +" autocmd BufWritePre * call utils#stripTrailingWhitespaces() " augroup END - - |