vimrc: fix retab.

This commit is contained in:
Mikaela Suomalainen 2014-06-01 16:15:41 +03:00
parent c86e1c496f
commit a755bed581
1 changed files with 3 additions and 1 deletions

4
vimrc
View File

@ -99,4 +99,6 @@ autocmd BufReadPost *
" End of copied from https://raw.githubusercontent.com/ProgVal/misc/master/dotfiles/.vimrc
" If we have tabs, remove them
retab
if has("autocmd")
au BufReadPost * if &modifiable | retab | endif
endif