Re: vim should reset indent size settings when changing file types

2018-11-29 Thread Tony Mechelynck
On Thu, Nov 29, 2018 at 11:14 AM David Demelier wrote: > > Hello, > > I'm not sure if there is way to fix that, but I actually would like to > use tabs of size 8 for every file except html. > > So basically I create a ~/.vim/ftplugin.html file with: > > set ts=4 > set sts=4 > set sw=4 > set noet

Re: vim should reset indent size settings when changing file types

2018-11-29 Thread David Demelier
Le 29/11/2018 à 11:37, Erik Christiansen a écrit : Then, runnin `vim foo.html` will set ts, sts and sw correctly. But then, if I open a new file different from html directly from vim, it keeps those settings. If you use setlocal instead of set, that should do it. Oh, that was so easy. I

Re: vim should reset indent size settings when changing file types

2018-11-29 Thread Erik Christiansen
On 29.11.18 11:14, David Demelier wrote: > I'm not sure if there is way to fix that, but I actually would like to use > tabs of size 8 for every file except html. > > So basically I create a ~/.vim/ftplugin.html file with: > > set ts=4 > set sts=4 > set sw=4 > set noet > > Then, runnin `vim

vim should reset indent size settings when changing file types

2018-11-29 Thread David Demelier
Hello, I'm not sure if there is way to fix that, but I actually would like to use tabs of size 8 for every file except html. So basically I create a ~/.vim/ftplugin.html file with: set ts=4 set sts=4 set sw=4 set noet Then, runnin `vim foo.html` will set ts, sts and sw correctly. But then,