I have kept shiftwidth as 4 in my vimrc file. But, when I open many existing c/h files, they have shiftwidth as 2. So, these gets mixed up.

Can I automatically select the shiftwidth from the file than setting it each time I open the files ?

link|improve this question

70% accept rate
feedback

3 Answers

up vote 6 down vote accepted

You can add a modeline at the bottom of the file:

/* vim: set sw=2: */

More on modelines.

link|improve this answer
1  
Beaten to it :-) @Manoj for completeness, do a :help modeline to read more about this – Fredrik Jul 28 '11 at 20:40
Thanks guys for the quick help ! Man, vi/m has everything you want... – Manoj Jul 28 '11 at 20:47
feedback

Modelines are not the best way to go about solving this, in my opinion. Modelines were (are?) vulnerable to a security issue. (see http://www.jukie.net/bart/blog/vim-modelines-insecure and http://secunia.com/advisories/25182/ for more information)

Instead, you can disable modelines and use a plugin to scan the files you open and automatically set shiftwidth, tabstop and others depending on the code that is there already. I use YAIFA to do this, but there are others on vim.org.

link|improve this answer
Thank you. I am selecting this as the most expected answer. There are 100s of existing files, and it is difficult for me to go and add the modeline on all of them. (also, they will fire me if I change the files unnecessarily...:) ) This will save from it, and will only remain in my work space/ – Manoj Jul 29 '11 at 15:10
One issue I am seeing is, the file opening time has increased a little bit ... – Manoj Jul 29 '11 at 20:18
feedback

Yes, you can specify the settings from within the file itself by using a modeline, e.g.

/* vim: set ts=2 sw=2: */

For further details, see http://vim.wikia.com/wiki/Modeline_magic

link|improve this answer
Thank you... :) – Manoj Jul 28 '11 at 20:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.