vote up 5 vote down star
1

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.

flag

80% accept rate

2 Answers

vote up 8 vote down check

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

link|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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