summaryrefslogtreecommitdiff
path: root/tests/snippets/scheme
Commit message (Collapse)AuthorAgeFilesLines
* Update golen test files.Matthäus G. Chajdas2022-02-203-56/+56
|
* Scheme: recognize #: keywords (used for named function arguments)Jean Abou Samra2022-02-081-0/+43
| | | | | Highlighting as Keyword.Declaration is consistent with the RacketLexer.
* Scheme: autogenerate lists of builtinsJean Abou Samra2022-02-081-4/+4
| | | | | | | This enriches the space of recognized builtins. Note that this also fixes the space after a builtin being included in the token.
* Scheme: support fancy kinds of numbersJean Abou Samra2022-02-081-0/+169
| | | | | Many number literals were not recognized previously, such as fractions, infinities, hex and complex literals.
* Scheme: highlight string escapesJean Abou Samra2022-02-081-0/+85
Move string parsing to a dedicated state so it can recognize string escapes. Add support for various kinds of escapes.