Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | | * | | | Closes #972: accept "inner attribute" syntax for Rust. | Georg Brandl | 2014-10-07 | 2 | -2/+2 | |
| | | | | | | ||||||
| | | * | | | Closes #982: fix pathological matching behavior for timestamps in IRC logs lexer | Georg Brandl | 2014-10-07 | 2 | -3/+7 | |
| | | | | | | ||||||
| | | * | | | debug_lexer: remove debug print; allow reading from stdin with filename "-" | Georg Brandl | 2014-10-07 | 1 | -2/+5 | |
| | | | | | | ||||||
| | | * | | | Closes #963: always guess lexer when reading from stdin. | Georg Brandl | 2014-10-07 | 1 | -11/+5 | |
| | | | | | | ||||||
| | | * | | | Add a pyflakes run to "make check". | Georg Brandl | 2014-10-07 | 1 | -0/+1 | |
| | | | | | | ||||||
| | | * | | | Fix (false positive) pyflakes warning. | Georg Brandl | 2014-10-07 | 1 | -0/+1 | |
| | | | | | | ||||||
| | | * | | | PEP8 and docstring format cleanup. | Georg Brandl | 2014-10-07 | 1 | -25/+11 | |
| | | | | | | ||||||
| | | * | | | Closes #979: improve encoding behavior of cmdline invocations | Georg Brandl | 2014-10-07 | 3 | -20/+52 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now the preferred locale encoding is used for stdin/stdout if the encoding is not set on the file objects. Also, code from input files is tried to be decoded as UTF-8, the locale encoding and finally latin-1 as a last resort if no encoding option is given. | |||||
| | | * | | | Closes #980: fix DeprecationWarnings (mostly due to files closed by __del__) ↵ | Georg Brandl | 2014-10-07 | 15 | -115/+62 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on Py3. Also fix a bunch of other uses of open() to use the with statement. | |||||
| | | * | | | Closes #874: do not swallow incomplete tracebacks in the Python console lexer. | Georg Brandl | 2014-10-07 | 3 | -1/+9 | |
| | | | | | | ||||||
| | | * | | | Closes #1016: add "shell" alias for bash. | Georg Brandl | 2014-10-07 | 2 | -2/+2 | |
| | | | | | | ||||||
| | | * | | | Closes #1013: allow "encoding" for the Raw formatter. | Georg Brandl | 2014-10-07 | 1 | -3/+2 | |
| | | | | | | ||||||
| | | * | | | Closes #1034: allow "-" in names for handlebars lexer | Georg Brandl | 2014-10-07 | 1 | -3/+3 | |
| | | | | | | ||||||
| | | * | | | Closes #1010: recognize string interpolation in Scala lexer. | Georg Brandl | 2014-10-07 | 2 | -0/+18 | |
| | | | | | | ||||||
| | | * | | | Fix style docs w/ HtmlFormatter example. | Tim Hatch | 2014-10-06 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1014 | |||||
| | | * | | | RubyLexer: Be less picky about closing delimiters. | Tim Hatch | 2014-10-06 | 2 | -6/+26 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous code used a negative lookbehind, which I do not grok how was ever correct. New code with testcase. Fixes #1026 | |||||
| | | * | | | DockerLexer: Improve multiline and quote handling. | Tim Hatch | 2014-10-06 | 2 | -3/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1040 | |||||
| | | * | | | BashLexer: Correctly handle $'' strings. | Tim Hatch | 2014-10-06 | 2 | -7/+19 | |
| | | | | | | ||||||
| | | * | | | BashLexer: Significantly improve handling of quoted strings (and ${}) | Tim Hatch | 2014-10-06 | 2 | -7/+68 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #994 | |||||
| | | * | | | Change how debug_lexer.py finds its lexers. | Tim Hatch | 2014-10-06 | 1 | -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. | |||||
| | | * | | | RubyLexer: Highlight operator methods better. | Tim Hatch | 2014-10-06 | 2 | -2/+21 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1033 | |||||
| | | * | | | Fix link for OpenBugs. | Tim Hatch | 2014-10-06 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1037 | |||||
| | | * | | | SmartyLexer: Support nested curly braces. | Tim Hatch | 2014-10-06 | 2 | -2/+43 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1039 | |||||
| | | * | | | RubyLexer: Keep state with nested interpolations | Tim Hatch | 2014-10-06 | 2 | -2/+64 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1018 | |||||
| | | * | | | Correct accidental punctuation range in RubyLexer. | Tim Hatch | 2014-10-06 | 2 | -1/+53 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #1006 | |||||
| | | * | | | Include newer features in the lexerdevelopment doc, and update it a bit. | Georg Brandl | 2014-10-04 | 1 | -3/+22 | |
| | | | | | | ||||||
| | | * | | | move module names from _XXXbuiltins to _XXX_builtins to be consistent | Georg Brandl | 2014-10-04 | 21 | -200/+279 | |
| | | | | | | ||||||
| | | * | | | fix most remaining overlong lines. | Georg Brandl | 2014-10-04 | 11 | -74/+78 | |
| | | | | | | ||||||
| | | * | | | check_sources: decode when reading file, remove obsolete checks | Georg Brandl | 2014-10-04 | 1 | -33/+13 | |
| | | | | | | ||||||
| | | * | | | check_sources: allow 110 line length, skip examplefiles directory | Georg Brandl | 2014-10-04 | 1 | -4/+9 | |
| | | | | | | ||||||
| | | * | | | debug_lexer: fix byte/str confusion for Py3 and print usage if no args given. | Georg Brandl | 2014-10-04 | 1 | -2/+6 | |
| | | | | | | ||||||
| | | * | | | Correct theorem.py docstring | Tim Hatch | 2014-10-04 | 1 | -2/+2 | |
| | | | | | | ||||||
| | | * | | | Remove extraneous commas | Tim Hatch | 2014-10-04 | 1 | -2/+2 | |
| | | | | | | ||||||
| | | * | | | Fix bygroups usage in RustLexer | Tim Hatch | 2014-10-04 | 1 | -7/+9 | |
| | | | | | | ||||||
| | | * | | | Fix quoting for IsabelleLexer | Tim Hatch | 2014-10-04 | 1 | -3/+3 | |
| | | | | | | ||||||
| | | * | | | Fix minor problems noted by regexlint and 'make check' | Tim Hatch | 2014-10-04 | 7 | -9/+11 | |
| | | | | | | ||||||
| | | * | | | Make scilab builtins file generatable, update | Tim Hatch | 2014-10-04 | 2 | -35/+3090 | |
| | | | | | | ||||||
| | | * | | | Reformat stan builtins | Tim Hatch | 2014-10-04 | 1 | -472/+482 | |
| | | | | | | ||||||
| | | * | | | Regenerate sourcemod builtins | Tim Hatch | 2014-10-04 | 1 | -996/+1077 | |
| | | | | | | ||||||
| | | * | | | Make _sourcemodbuiltins capable of regenerating itself | Tim Hatch | 2014-10-04 | 1 | -9/+16 | |
| | | | | | | ||||||
| | | * | | | Swap two builtins over to one-word-per-line | Tim Hatch | 2014-10-04 | 2 | -625/+3037 | |
| | | | | | | ||||||
| | | * | | | Update postgres builtins regeneration logic | Tim Hatch | 2014-10-04 | 1 | -30/+15 | |
| | | | | | | ||||||
| | | * | | | Move specialcasing of words() to any subclass of Future | Tim Hatch | 2014-10-03 | 2 | -5/+19 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The idea here is that plugins might want to provide some other optimization we haven't dreamed up yet, and to do so this way means they don't need to change with RegexLexerMeta (and it will be easier to support in regexlint). | |||||
| | | * | | | Python3 compat in test_util | Tim Hatch | 2014-10-03 | 1 | -3/+1 | |
| | | | | | | ||||||
| | | * | | | Regenerate _vimbuiltins.py | Tim Hatch | 2014-10-03 | 1 | -6/+1923 | |
| | | | | | | ||||||
| | | * | | | New version of the vim keyword script, using format_lines | Tim Hatch | 2014-10-03 | 1 | -4/+26 | |
| | | | | | | ||||||
| | | * | | | Make format_lines take an indent level. | Tim Hatch | 2014-10-03 | 1 | -6/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need this because the vim keywords file uses functions to define these lists, because of Jython. | |||||
| | | * | | | Add util function for keyword list formatting | Tim Hatch | 2014-10-03 | 2 | -0/+30 | |
| | | | | | | ||||||
| | | * | | | Added 5 keywords to Agda lexer. Extended test. | abel | 2014-10-02 | 2 | -4/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added 'instance', 'postulate', 'renaming', 'tactic', 'unquoteDecl'. Added the first three to test.agda. | |||||
| | | * | | | Fix refactoring error. | Georg Brandl | 2014-10-01 | 2 | -3/+2 | |
| | | | | | |