| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
Based on the Vim theme: http://www.vim.org/scripts/script.php?script_id=1143
Example output: http://members.iinet.net.au/~ideasman42/dotemacs/init.html
The theme is also bundled with qt-creator and available from emacs package manager.
Also, there aren't many nice dark themes for Pygments at the moment.
|
| | |
|
| | |
|
| |\ |
|
| | | |
|
| | | |
|
| | | |
|
| | |\
| | |
| | |
| | | |
Add ?Rainbow Dash? syntax highlighting style
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
This bright and colorful style is a port of my TextMate theme [1]. It is
based on ?Mac Classic? by Chris Thomas.
[1]: http://sanssecours.github.io/Rainbow-Dash.tmbundle
|
| | | | |
|
| | /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This introduces support for some missing features to the Handlebars lexer:
Partials and path segments. Partials mostly appeared to work before, but the
`>` in `{{> ... }}` would appear as a syntax error, as could other
components of the partial. This change introduces support for:
* Standard partials: `{{> partialName}}`
* Partials with parameters: `{{> partialName varname="value"}}`
* Ddynamic partials: `{{> (partialFunc)}}`
* Ddynamic partials with lookups: `{{> (lookup ../path "partialName")}}`
* Partial blocks: `{{> @partial-block}}`
* Inline partials: `{{#*inline}}..{{/inline}}`
It also introduces support for path segments, which can reference content in
the current context or in a parent context. For instance, `this.name`,
`this/name`, `./name`, `../name`, `this/name`, etc. These are all now tracked
as variables.
|
| |/
|
|
|
|
|
|
| |
- Nested comments correctly highlighted.
- Globals and locals correctly nested inside each other and strings.
- Extended locals and stored results correctly highlighted.
- Keywords and operators correctly highlighted.
- Parentheses and functions correctly highlighted.
|
| | |
|
| | |
|
| | |
|
| | |
|
|
|
Elixir syntax has evolved quite significantly since the initial lexer
was written. In this update I have rewritten most of the code to support
modern Elixir (as of v0.14.0-dev).
The example file has also been updated to give an quick overview
of most of the language constructs.
|