Skip to content

Commit df640ce

Browse files
committed
Version 0.0.6
1 parent d69ba85 commit df640ce

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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
2127
These 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
3737
You 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",

internal/server/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
const lsName = "vimfony"
1717

18-
var version = "0.0.5"
18+
var version = "0.0.6"
1919

2020
type Server struct {
2121
config *config.Config

0 commit comments

Comments
 (0)