symfony IDE is Vim plugin that works as an IDE for Symfony PHP Framework. It has useful commands for symfony projects editing.
You can switch between template view / module view ( < F8 > key )
While editing a module method, press < F8 >. It will switch to the appropriate template view. Press < F8 > again to go back to the module method.
It works with Actions and Components:
function executeMyAction() < > myActionSuccess.php
function executeMyComponent() < > _myComponent.php
TODO
Support for xxxError, handleXXX, validateXXX
Shortcuts to the layout template of an action/view
Support for empty action files and missing templates
Requirements:
· Vim
INSTALLATION:
copy the symfony.vim in your plugin directory and run Vim.
optionaly map < F8 > or any key to the switching command by typing : silent map < F8 > :SfSwitchView < CR >
You can now easily switch between Action view / Template view of an action.
Note : When entering a buffer, the plugin detects the symfony root dir from the current working directory ( getpwd() )
What's New in This Release:
· Added automatic sf_root_dir detection
Product's homepage