Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Same treatment for `forSome` | Paolo G. Giarrusso | 2019-11-29 | 1 | -2/+2 |
| | |||||
* | Only highlight `type` as a whole word | Paolo G. Giarrusso | 2019-11-29 | 1 | -2/+2 |
| | |||||
* | Fix #972: Resurrect patch from bug tracker | Paolo G. Giarrusso | 2019-11-29 | 1 | -6/+11 |
| | | | | | | | Issue: Scala lexer incorrectly highlights code containing type parameters. This is the patch from https://github.com/pygments/pygments/issues/972#issuecomment-526852069, tested by https://github.com/pygments/pygments/issues/972#issuecomment-526852076. | ||||
* | Update project to use modern Python features and idioms | Jon Dufresne | 2019-11-25 | 1 | -4/+4 |
| | | | | | | | | | | Run the pyupgrade tool across the project to use modern language features. - Use set literals - Use dict comprehension - Remove unnecessary numeric indexes in format string - Remove unnecessary extra parentheses | ||||
* | Java: make it less operator-heavy | Georg Brandl | 2019-11-24 | 1 | -3/+5 |
| | | | | Fixes #987 | ||||
* | Java: update URL | Georg Brandl | 2019-11-24 | 1 | -1/+1 |
| | |||||
* | Java: support "var" contextual keyword (bitbucket PR #742) | Georg Brandl | 2019-11-24 | 1 | -0/+5 |
| | | | | Closes #1101 | ||||
* | Fixup all headers and some more minor problems.2.4.2 | Georg Brandl | 2019-05-28 | 1 | -1/+1 |
| | |||||
* | some fixes to the kotlin lexer to work with the corda kolin codebase | nimmajbb | 2019-04-01 | 1 | -3/+30 |
| | |||||
* | Update SARL added date, regenerate mapping. | Matth?us G. Chajdas | 2018-12-16 | 1 | -1/+1 |
| | |||||
* | Merged in sgalland/pygments-main (pull request #717) | Anteru | 2018-12-16 | 1 | -1/+55 |
|\ | | | | | | | Add the lexer for the SARL language. | ||||
| * | Add the lexer for the SARL language. | St?phane GALLAND | 2017-04-04 | 1 | -1/+55 |
| | | |||||
* | | Merge heads. | Georg Brandl | 2018-11-28 | 1 | -3/+3 |
|\ \ | |||||
| * | | Fix remaining 'DeprecationWarning: invalid escape sequence' occurrences in ↵ | Andreas Kloeckner | 2018-06-19 | 1 | -3/+3 |
| |/ | | | | | | | lexer files | ||||
* | | Clojure: extend valid_name to contain "|". | Georg Brandl | 2017-01-29 | 1 | -1/+1 |
|/ | |||||
* | 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/+1573 |
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. |