summaryrefslogtreecommitdiff
path: root/pygments/lexers/asm.py
Commit message (Collapse)AuthorAgeFilesLines
...
| | * Merge in HSAIL lexer (PR#518).Georg Brandl2016-02-171-79/+83
| | |\
| | | * merge default into stableGeorg Brandl2016-01-171-0/+436
| | |
| | * HSAIL: Add more keywords, strings, numerical constantsgrollinger2015-11-071-10/+34
| | |
| | * Add HSAIL lexergrollinger2015-11-061-1/+110
| | |
| * | Lex comment as Comment when a newline gets escapedRuben De Smet2016-01-071-3/+4
| | |
| * | Add tasm lexer.Ruben De Smet2016-01-071-2/+80
| |/ | | | | | | I copied the nasm lexer and added or removed things that are different.
| * Closes #1124: Add 'addrspacecast' instruction to the LLVM asm lexerZvi Rackover2015-06-301-1/+2
| |
| * Copyright year update.Georg Brandl2015-01-211-1/+1
| |
| * Simplify charclasses in a few more modulesGeorg Brandl2014-11-061-3/+3
| |
| * Fix allowing whitespace before preprocessor commands in NASM.Georg Brandl2014-11-061-1/+1
| |
| * ca65: allow bracketsGeorg Brandl2014-10-071-1/+1
| |
| * Better name for ca65 assembler lexer.Georg Brandl2014-10-071-1/+1
| |
| * Remove the c_like subpackage.Georg Brandl2014-09-201-2/+2
| |
| * split up text lexersGeorg Brandl2014-09-191-11/+11
| |
| * Update ElixirLexer and example_elixir.exAlexei Sholik2014-06-051-0/+435
| | | | | | | | | 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.
* Copyright update.Georg Brandl2017-01-221-1/+1
|
* Add support for partials and path segments for Handlebars.Christian Hammond2016-11-041-0/+628
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.