summaryrefslogtreecommitdiff
path: root/pygments/lexers/floscript.py
Commit message (Collapse)AuthorAgeFilesLines
* Rework URL information in lexers.Matthäus G. Chajdas2022-03-201-1/+2
| | | | | | | | This commit adds a new url field to a lexer, which can be used to link to the language website, instead of relying on having the link in either languages.rst or the docstring of the lexer. Additionally, it changes the languages.rst file to auto-generate the list of lexers from the actual source code, using the provided URL.
* Happy new year.Georg Brandl2022-01-251-1/+1
|
* Modernize Whitespace token in lexer: floscriptSebastian Engel2021-11-141-5/+4
|
* Remove unicorn token types (fixes #1816.)Matthäus G. Chajdas2021-06-201-1/+1
| | | | | | The PR #1819 provides a tool to identify unique token types. This PR aims to remove the most obvious cases of unicorn styles which are used in a single lexer only.
* Run pyupgrade across codebase to modernize syntax and patterns (#1622)Jon Dufresne2021-01-171-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | pyupgrade is a tool to automatically upgrade syntax for newer versions of the Python language. The project has been Python 3 only since 35544e2fc6eed0ce4a27ec7285aac71ff0ddc473, allowing for several cleanups: - Remove unnecessary "-*- coding: utf-8 -*-" cookie. Python 3 reads all source files as utf-8 by default. - Replace IOError/EnvironmentError with OSError. Python 3 unified these exceptions. The old names are aliases only. - Use the Python 3 shorter super() syntax. - Remove "utf8" argument form encode/decode. In Python 3, this value is the default. - Remove "r" from open() calls. In Python 3, this value is the default. - Remove u prefix from Unicode strings. In Python 3, all strings are Unicode. - Replace io.open() with builtin open(). In Python 3, these functions are functionally equivalent. Co-authored-by: Matthäus G. Chajdas <Anteru@users.noreply.github.com>
* Bump copyright year.Matthäus G. Chajdas2021-01-031-1/+1
|
* Update copyright year (fixes #1514.)Matthäus G. Chajdas2020-08-221-1/+1
|
* Fixup all headers and some more minor problems.2.4.2Georg Brandl2019-05-281-17/+13
|
* Fix a few markup problems in the docs.Georg Brandl2018-12-181-1/+1
|
* Add FloScript sample file, update mappings & changes.Matth?us G. Chajdas2018-12-171-8/+10
|
* Corrected one word...Rostyslav Golda2018-02-031-1/+1
|
* Added FloScript lexer04862018-02-031-0/+85