Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | all: fixup remaining regexlint warnings | Georg Brandl | 2020-09-06 | 1 | -2/+2 |
| | |||||
* | Update for Csound 6.15.0 (#1509) | Nate Whetsell | 2020-08-17 | 1 | -6/+8 |
| | | | | | * Update for Csound 6.15.0 * Update comment | ||||
* | Update Csound built-ins for v6.14.0 (#1383) | Nate Whetsell | 2020-02-09 | 1 | -4/+4 |
| | | | | Update Csound built-ins for v6.14.0 | ||||
* | Update for Csound 6.13.0 | Nathan Whetsell | 2019-11-10 | 1 | -7/+15 |
| | |||||
* | Refactor Csound name callback | Nathan Whetsell | 2019-11-10 | 1 | -13/+10 |
| | |||||
* | Update Csound URLs | Nathan Whetsell | 2019-11-10 | 1 | -11/+11 |
| | |||||
* | Fixup all headers and some more minor problems.2.4.2 | Georg Brandl | 2019-05-28 | 1 | -1/+1 |
| | |||||
* | Improve CSound name handling. | Matth?us G. Chajdas | 2019-02-12 | 1 | -3/+7 |
| | | | | This should fix the last of the spurious errors we're seeing in CI. | ||||
* | Fix Csound name callback cutting off part of the name. | Matth?us G. Chajdas | 2018-11-27 | 1 | -0/+3 |
| | | | | | Previously, a name like P:C would get parsed as P, breaking the roundtrip. This would result in random test failures during roundtrip testing. | ||||
* | Style nit | Nathan Whetsell | 2017-08-30 | 1 | -3/+3 |
| | |||||
* | Update for Csound 6.09.1 | Nathan Whetsell | 2017-08-06 | 1 | -17/+8 |
| | |||||
* | Add Csound Score d statement | Nathan Whetsell | 2017-05-27 | 1 | -1/+1 |
| | |||||
* | Fix issue with opcode types | Nathan Whetsell | 2017-05-26 | 1 | -1/+4 |
| | |||||
* | Add Csound lexer tests | Nathan Whetsell | 2017-01-28 | 1 | -8/+8 |
| | |||||
* | Update lexers | Nathan Whetsell | 2017-01-27 | 1 | -184/+256 |
| | |||||
* | Merged birkenfeld/pygments-main into default | Nathan Whetsell | 2017-01-27 | 1 | -61/+82 |
|\ | |||||
| * | Add %f to format specifiers | Nathan Whetsell | 2017-01-19 | 1 | -3/+3 |
| | | |||||
| * | Add .udo to Csound filenames | Nathan Whetsell | 2016-12-11 | 1 | -1/+1 |
| | | |||||
| * | Use HTTPS URLs | Nathan Whetsell | 2016-12-11 | 1 | -3/+3 |
| | | |||||
| * | Update for Csound 6.08.0 | Nathan Whetsell | 2016-12-11 | 1 | -21/+42 |
| | | |||||
| * | Fix incorrect token | Nathan Whetsell | 2016-12-11 | 1 | -1/+1 |
| | | |||||
| * | Match Csound preprocessor | Nathan Whetsell | 2016-12-11 | 1 | -8/+9 |
| | | |||||
| * | Update Csound macro nomenclature | Nathan Whetsell | 2016-12-11 | 1 | -25/+25 |
| | | |||||
| * | Make Csound #include string delimiters match preprocessor | Nathan Whetsell | 2016-12-11 | 1 | -2/+1 |
| | | |||||
| * | Update copyright year | Nathan Whetsell | 2016-12-11 | 1 | -1/+1 |
| | | |||||
| * | Fix capitalization of Csound | Nathan Whetsell | 2016-12-11 | 1 | -1/+1 |
| | | |||||
| * | Fix most complaints from regexlint. | Georg Brandl | 2016-02-14 | 1 | -15/+15 |
| | | |||||
| * | merge default into stable | Georg Brandl | 2016-01-17 | 1 | -0/+366 |
| | |||||
* | Copyright update. | Georg Brandl | 2017-01-22 | 1 | -1/+1 |
| | |||||
* | Add support for partials and path segments for Handlebars. | Christian Hammond | 2016-11-04 | 1 | -0/+366 |
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. |