Add vim command to remove "smart" quotes.

This commit is contained in:
David Tomaschik
2017-05-13 16:37:56 -07:00
parent de2a159024
commit aafc352dd0

View File

@@ -151,3 +151,6 @@ autocmd Syntax * syn match ExtraWhitespace /\s\+$\| \+\ze\t/ containedin=ALL
" Color column at end of lines
set colorcolumn=+1
highlight ColorColumn ctermbg=black guibg=lightgrey
" Remove smart quotes
command Unsmartquote %s/“\|”/"/g