Symfony Code Snippets Extension For Visual Studio Code
If you're searching for high-quality Symfony snippets for VS Code, you've come to the right place. Our collection includes code snippets for both Symfony PHP and Twig, along with syntax highlighting and Yaml snippets. With our comprehensive library of snippets, you can quickly and easily optimize your workflow and boost your productivity in Symfony development.
Symfony Code Snippets On MarketPlace
If you're interested in installing and using the extension, you have two options to choose from :
# |
Type | how |
---|---|---|
1 | Command palette | ext install nadim-vscode.symfony-code-snippets |
2 | vs Code extensions marketplace | Visual Studio Marketplace |
important settings :
- you need to set up the comment snippet to true
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
}
- set up the twig support
"files.associations": {
"*.html": "twig"
},
"emmet.includeLanguages": {
"twig": "html"
}
Top comments (0)