October Twig Highlighter
This package adds syntax definitions for the October CMS Twig engine. @octobercms http://octobercms.com
Details
Installs
- Total 5K
- Win 3K
- Mac 1K
- Linux 954
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 |
Mac | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
October Twig is no longer under active development
Please note that the October Twig extension is no longer under active development. It has been superseded by a new VSCode package called October Code, which offers robust support for October CMS applications.
October CMS Twig Highlighter
This package adds syntax definitions for the October CMS Twig engine. Support is available for Sublime Text, Visual Studio Code and all JetBrains IntelliJ IDEs.
If you would like the INI syntax to be enabled, ##
must be at the beginning of the template file. For example:
##
url = "/blog"
layout = "default"
==
<?
function onStart() { /* ...*/ }
?>
==
<h1>Page Title</h1>
{% for post in posts %}
<h4>{{ post.title }}</h4>
{{ post.content}}
{% endfor %}
Visual Studio Code
How to install with VS Code
Search for October Twig and install the package. You can then select “October CMS Template” from the available syntax list.
How to Contribute
- Intall this extension
- Open the
%USERPROFILE%\.vscode\extensions
directory - Modify the extension files
- Reload the window to test
VS Code Configuration
Add these lines to your VS Code settings to associate HTM files as October Twig syntax. These settings can also be used to get Emmet working.
"files.associations": {
"*.htm": "october-htm"
},
"emmet.includeLanguages": {
"october-htm": "html"
}
Sublime Text
Uses .sublime-syntax
files that works with Sublime Text 3 and newer.
How to install with Sublime Package Control
Search for October Twig and install it, it's just that simple.
Restart Sublime Text after you install this package.
Sublime Text Manual Install
- Download or clone this repository into [install-dir]/Packages/october-twig
- Restart Sublime Text.
How to Contribute
- To test a local version of the highlighter first uninstall the highlighter from package control.
- Follow the manual installation process by cloning the repo into your packages directory.
- Restart Sublime Text.
- Open up the '[install-dir]/Packages/october-twig' folder into a new Sublime Text project.
- Open up the
october-twig.sublime-syntax
file and make changes. - Provided is a
test.htm
file that holds most of the common uses for testing the regex, use this to verify your changes before and after you make them to ensure the changes you make do not break anything. - Send a pull request with a single change per request.
JetBrains IntelliJ
How to install with IntelliJ
- Make sure the TextMate Bundles plugin is installed and enabled.
- Clone this repo into a local directory (
/path/to/october-twig
). - In IntelliJ's settings, navigate to
Editor
->TextMate Bundles
. - Click
+
and select the local clone of this repo (/path/to/october-twig
). - In IntellJ's settings, navigate to
Editor
->File Types
. - Select
Files supported via TextMate bundles
. - Under
File name patterns
add*.htm
. - Apply the new settings to get October Twig highlighting in any file that has a
*.htm
extension.
Thanks
- Thanks @dqsully for the original October CMS Template language package.
- Thanks @Anomareh for the PHP-Twig TextMate bundle used to source the Twig functions.
License
This code is licensed with a Creative Commons Attribution-NoDerivatives 4.0 International Public License which means you may use it freely and submit pull requests, but you may not fork it to create a new product without written permission from the copyright holder.