summaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
* debug_lexer: make it work for ExtendedRegexLexers by always using a context ↵Georg Brandl2014-11-061-27/+38
| | | | object
* Remove obsolete script to find "codetags".Georg Brandl2014-11-061-211/+0
|
* Include 'unlexer' as a common misspelling.Tim Hatch2014-10-101-1/+1
|
* debug_lexer: fix missing import and wrong API usageGeorg Brandl2014-10-071-5/+5
|
* debug_lexer: remove debug print; allow reading from stdin with filename "-"Georg Brandl2014-10-071-2/+5
|
* Closes #980: fix DeprecationWarnings (mostly due to files closed by __del__) ↵Georg Brandl2014-10-071-8/+6
| | | | | | on Py3. Also fix a bunch of other uses of open() to use the with statement.
* Change how debug_lexer.py finds its lexers.Tim Hatch2014-10-061-7/+12
| | | | | Previously it was way too easy to end up with None as the lexer, which later fails. This considers aliases, same as the -l argument to pygmentize does.
* move module names from _XXXbuiltins to _XXX_builtins to be consistentGeorg Brandl2014-10-041-2/+11
|
* check_sources: decode when reading file, remove obsolete checksGeorg Brandl2014-10-041-33/+13
|
* check_sources: allow 110 line length, skip examplefiles directoryGeorg Brandl2014-10-041-4/+9
|
* debug_lexer: fix byte/str confusion for Py3 and print usage if no args given.Georg Brandl2014-10-041-2/+6
|
* New version of the vim keyword script, using format_linesTim Hatch2014-10-031-4/+26
|
* Compatibility symlink.Georg Brandl2014-09-201-0/+1
|
* Rename find_error to debug_lexer and add a mode to use the profiling regex ↵Georg Brandl2014-09-201-20/+68
| | | | lexer.
* Update ElixirLexer and example_elixir.exAlexei Sholik2014-06-058-0/+2204
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.