summaryrefslogtreecommitdiff
path: root/pygments/styles/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Add New Style: InkpotCampbell Barton2019-11-251-0/+1
| | | | | | | | | | 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.
* Fixup all headers and some more minor problems.2.4.2Georg Brandl2019-05-281-1/+1
|
* Aliased stata-light to stata.Mauricio Caceres Bravo2019-04-021-0/+1
|
* Merged default branch to hopefully solve merge conflictsMauricio Caceres Bravo2019-02-121-0/+2
|\
| * Adds a solarized styleCamil Staps2017-02-281-0/+2
| |
| * ABAP: a few minor fixesGeorg Brandl2017-01-221-0/+1
| |
| * styles: fixupsGeorg Brandl2017-01-221-1/+1
| |
| * Merged in sanssecours/pygments (pull request #623)Georg Brandl2017-01-221-1/+2
| |\ | | | | | | | | | Add ?Rainbow Dash? syntax highlighting style
| | * Add ?Rainbow Dash? syntax highlighting styleRen? Schwaiger2016-07-181-1/+2
| | | | | | | | | | | | | | | | | | | | | 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
| * | Copyright update.Georg Brandl2017-01-221-1/+1
| | |
| * | Add support for partials and path segments for Handlebars.Christian Hammond2016-11-041-0/+78
| / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Stata lexer and styles improvements and bug fixesMauricio Caceres Bravo2018-12-181-2/+7
|/ | | | | | | | - 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.
* Register arduino styleEdoardo Tenani2016-01-271-0/+1
|
* Added Algol and Algol_nu style (#1090).Georg Brandl2015-03-081-0/+2
|
* Added a new style: Lovelace.Miikka Salminen2015-03-071-0/+1
|
* Copyright year update.Georg Brandl2015-01-211-1/+1
|
* Update ElixirLexer and example_elixir.exAlexei Sholik2014-06-051-0/+74
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.