In some files I can see a commented line, usually the last, with vim settings. Does vim read these settings? If it does, are any limitations of what kind of settings man can put there?

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

They're called modelines and while I'm not sure the extent you can go with them, here's a link to the vimtips wiki with some examples:

http://vim.wikia.com/wiki/Modeline_magic

help modeline

from within vim to check out the official docs.

link|improve this answer
1  
There are security problems with modelines; that's why they're disabled by default. It would probably be better for you to configure per-project .vimrc files. For example , but there are many more. – James Broadhead Apr 11 '11 at 7:12
feedback

You can check out in the online manual: http://vimdoc.sourceforge.net/htmldoc/options.html#modeline

And this faq item also refers to it: http://vimdoc.sourceforge.net/htmldoc/vimfaq.html#19.5

link|improve this answer
sorry Rick was faster with one minute :). For this reason I accepted his answer. +1 for links – kfl62 Oct 18 '10 at 11:33
feedback

Your Answer

 
or
required, but never shown

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