Hello all, On May 24, 11:45 pm, Tom Haskins-Vaughan <[EMAIL PROTECTED]> wrote: > > I had to add the following lines to my .vimrc file: > > > filetype on > > filetype plugin on
That's an important first step in getting the plugin to work. For the Symfony snippets to get loaded automatically you need to ensure that symfony gets recognised as a valid filetype. Typing ":set ft" in Vim will show you what type has been detected. The string should contain "symfony". If it's not then there are several ways to load the snippets manually. In gvim you should just be able to select them from the Snippets menu. This menu can be accessed from the console version using the emenu command: ":emenu Snippets.symfony". Another option is to set the filetype yourself. :set ft=symfony or :set ft=symfony.php should work. Hope that helps. Regards, Felix --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---
