up vote 9 down vote favorite
2
share [g+] share [fb]

I would like to set some vim options in one file in the comments section.

For example, I would like to set this option in one file

set syntax=python

The file does not have a .py extension and I am not interested in making my vim installation recognise all files with this extension as python files.

I know this can be done because I have seen it, but my googling for this has not yet been fruitful.

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

You're wanting a modeline The linked article should explain far better than I can.

link|improve this answer
feedback

I haven't used vim much, but I think what you want is to add a line like the following to the end of your file:

# vim: set syntax=python
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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