PHP-Twig
A TextMate (and Sublime Text) bundle for Twig.
Details
Installs
- Total 124K
- Win 53K
- Mac 41K
- Linux 30K
Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
PHP Twig tmBundle
A TextMate (and Sublime Text) bundle for Twig.
Thanks
I'd like to thank a few people that have helped me out with the creation of this bundle.
- taavi for fixing a bug stopping the bundle from actually working in TextMate.
- DuoSRX for contributing a bunch of snippets.
- Infininight in #textmate (freenode) for helping me a ton with the rewrite.
Notes
This is my first tmbundle and it was made and tested in Sublime Text. Everything should work fine, but if something doesn't please report it and I'll do my best to get it fixed.
I'm also not extremely familiar with TextMate's method of creating language syntaxes. If anyone has any input on optimizing it or on anything else, such as choices in grammar scopes, please feel free to let me know.
Installation
TextMate, and most editors that support TextMate bundles, allow the installation of bundles simply by extracting an archive or cloning the repository into the application's bundle directory. This bundle is no different. Below is a list of common bundle directories.
Sublime Text
To install this bundle in Sublime Text, a few extra steps are required.
- Open Sublime Text and in the Preferences menu click Browse Packages.
- In the directory that was just opened, create a new directory
PHP-Twig/
. - Move the contents of the
Preferences/
,Snippets/
, andSyntaxes/
directories of this repo into the directory you just created. - Restart Sublime Text.
TextMate
/Library/Application Support/TextMate/Bundles
TextMate 2
You can install this bundle in TextMate 2 by opening the preferences and going to the bundles tab. After installation it will be automatically updated for you.
Scopes
To aid theming, here's a list of what each Twig element is scoped to.
Tags:
{{ }}:
Tag: punctuation.section.tag.twig
Scope: meta.tag.template.value.twig
{% %}:
Tag: punctuation.section.tag.twig
Scope: meta.tag.template.block.twig
{# #}: comment.block.twig
Embedded:
{{ }}: meta.tag.inline.any.html meta.tag.template.value.twig
{% %}: meta.tag.inline.any.html meta.tag.template.block.twig
Constants:
Language: constant.language.twig
Numeric: constant.numeric.twig
Operators:
Arithmetic: keyword.operator.arithmetic.twig
Assignment: keyword.operator.assignment.twig
Bitwise: keyword.operator.bitwise.twig
Comparison: keyword.operator.comparison.twig
Logical: keyword.operator.logical.twig
Other: keyword.operator.other.twig
Objects: variable.other.twig
Properties: variable.other.property.twig
Accessors:
Dot: punctuation.separator.property.twig
Array:
Begin: punctuation.section.array.begin.twig
End: punctuation.section.array.end.twig
Strings:
Single: string.quoted.single.twig
Double: string.quoted.double.twig
Arrays: meta.array.twig
Accessor:
Begin: punctuation.section.array.begin.twig
End: punctuation.section.array.end.twig
Separator: punctuation.separator.object.twig
Hashes: meta.hash.twig
Accessor:
Begin: punctuation.section.hash.begin.twig
End: punctuation.section.hash.end.twig
Separator: punctuation.separator.object.twig
Keys: punctuation.separator.key-value.twig
Keywords: keyword.control.twig
Functions: support.function.twig
Parens:
Begin: punctuation.definition.parameters.begin.twig
End: punctuation.definition.parameters.end.twig
Arguments: meta.function.arguments.twig
Filters: support.function.twig
Parens:
Begin: punctuation.definition.parameters.begin.twig
End: punctuation.definition.parameters.end.twig
Arguments: meta.function.arguments.twig
User-Defined: meta.function-call.other.twig
Macros: meta.function-call.twig