http://www.perlmonks.org?node_id=265238


in reply to Re: VIM syntax highlighting in test scripts
in thread Editing features for advanced users

Or, if you have filetype autodetection turned on, you can use:

    autocmd BufRead *.t set filetype=perl

This will trigger the FileType event which is used to load syntax files, etc. See :help filetype for details.

Replies are listed 'Best First'.
Re^3: VIM syntax highlighting in test scripts
by electrosphere (Beadle) on Jan 19, 2010 at 12:42 UTC

    On Debian Lenny, it appears that modeline is off by default in vim. You can put the following in your local .vimrc to enable:

    set syntax=on set modeline set modelines=2
    modelines=2 appears to be the number of lines from the top of file to scan for modelines. Then put this on the 2nd line of your source:
    # vim: syntax=perl
    You can manually set the syntax scheme in the vim session with
    :set syntax=perl
    Links for more info:
    • http://vim.wikia.com/wiki/Modeline_magic
    • http://vimdoc.sourceforge.net/htmldoc/options.html#%27modeline%27