@@ -16,6 +16,12 @@ We finally have several autocomplete features working in Vimfony!
1616- Autocomplete Twig functions
1717- Autocomplete Twig variables
1818- Autocomplete route names and parameters in Twig files and PHP files
19+ - Support for Composer’s autoload_classmap for more complete autoloading
20+ - Support for multiple xml files in container_xml_path, for example in [ Sulu] ( https://github.com/sulu/sulu ) projects
21+ - Autocomplete Twig files: works in php, twig and yaml (if the key is equal to ‘template’)
22+ - ` gd ` routes
23+ - Autocomplete translations (only YAML)
24+ - ` gd ` translations (only YAML)
1925
2026## Planned features
2127These features are not yet implemented but would be useful:
@@ -25,13 +31,7 @@ These features are not yet implemented but would be useful:
2531- Version checker & updater (` vimfony update ` )
2632
2733### Coming up
28- You can get these features if you build from source:
29- - Support for Composer’s autoload_classmap for more complete autoloading
30- - Support for multiple xml files in container_xml_path, for example in [ Sulu] ( https://github.com/sulu/sulu ) projects
31- - Autocomplete Twig files: works in php, twig and yaml (if the key is equal to ‘template’)
32- - ` gd ` routes
33- - Autocomplete translations (only YAML)
34- - ` gd ` translations (only YAML)
34+ Main should be up-to-date with the latest release, so you’re good to go! 🥳
3535
3636## How to use
3737You can [ download a release] ( https://github.com/shinyvision/vimfony/releases ) for your OS and CPU or build from source:
@@ -56,6 +56,12 @@ if git_root ~= nil then
5656 init_options = {
5757 roots = { " templates" },
5858 container_xml_path = (git_root .. " /var/cache/dev/App_KernelDevDebugContainer.xml" ),
59+ -- OR:
60+ -- container_xml_path = {
61+ -- (git_root .. "/var/cache/dev/App_KernelDevDebugContainer.xml"),
62+ -- (git_root .. "/var/cache/website/dev/App_KernelDevDebugContainer.xml"),
63+ -- (git_root .. "/var/cache/admin/dev/App_KernelDevDebugContainer.xml"),
64+ -- },
5965 vendor_dir = git_root .. " /vendor" ,
6066 -- Optional:
6167 -- php_path = "/usr/bin/php",
0 commit comments