summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fortran: allow . as punctuationGeorg Brandl2014-11-061-1/+1
| |
* | VB.net: support Unicode identifiersGeorg Brandl2014-11-061-6/+12
| |
* | Fortran: allow $ in namesGeorg Brandl2014-11-061-1/+1
| |
* | Groovy: recognize triple quoted stringsGeorg Brandl2014-11-061-0/+2
| |
* | Scala: fix recognition of Unicode => operatorGeorg Brandl2014-11-061-2/+2
| |
* | Ocaml: be more conciliatory after dotted nameGeorg Brandl2014-11-061-0/+1
| |
* | Awk: recognize BEGIN/ENDGeorg Brandl2014-11-061-3/+3
| |
* | Awk: allow "|" operatorGeorg Brandl2014-11-061-1/+1
| |
* | Perl: fix highlight of "sub foo; ...{"Georg Brandl2014-11-061-1/+1
| |
* | debug_lexer: make it work for ExtendedRegexLexers by always using a context ↵Georg Brandl2014-11-061-27/+38
| | | | | | | | object
* | Ruby: more special $* variablesGeorg Brandl2014-11-061-1/+1
| |
* | C#: with generics "class" can also be used without introducing a classGeorg Brandl2014-11-061-2/+3
| |
* | Scss: fix @media highlight and endless state stacking without #popGeorg Brandl2014-11-061-2/+3
| |
* | Protobuf: be conciliatory after keywords, they might be used as identifiersGeorg Brandl2014-11-062-4/+8
| |
* | HDL: use words()Georg Brandl2014-11-061-112/+136
| |
* | VHDL: fix comment regex; two hyphens always start a commentGeorg Brandl2014-11-061-1/+1
| |
* | HDL: PEP8 cleanupGeorg Brandl2014-11-061-17/+16
| |
* | FORTRAN: fix previous commitGeorg Brandl2014-11-061-2/+2
| |
* | FORTRAN: recognize cpp style preprocessor lines, fix overzealous variable ↵Georg Brandl2014-11-061-1/+2
| | | | | | | | highlighting
* | Fix allowing whitespace before preprocessor commands in NASM.Georg Brandl2014-11-061-1/+1
| |
* | Remove obsolete script to find "codetags".Georg Brandl2014-11-061-211/+0
| |
* | Protobuf lexer: allow single-quoted strings.Georg Brandl2014-11-061-1/+2
| |
* | Appease pyflakes.Georg Brandl2014-11-061-0/+2
| |
* | Fix duplicate import.Georg Brandl2014-11-061-2/+2
| |
* | Remove unused import.Georg Brandl2014-11-061-1/+1
| |
* | Improved lifetimes and added macro parameters to rust.Armin Ronacher2014-11-061-2/+4
| |
* | Swap unicode whitespace character to one that Java sees as webitespace.Tim Hatch2014-11-042-2/+2
|/ | | | | Tests fail on Jython without this; refactoring to change nbsp detection will happen later.
* Test recognition of Unicode whitespace in java and js examplefiles.Georg Brandl2014-11-042-1/+2
|
* Merged in stephencelis/pygments-main/swift-lang (pull request #413)Georg Brandl2014-11-040-0/+0
|\ | | | | | | Update Swift example
| * Close branch swift-langswift-langGeorg Brandl2014-11-040-0/+0
| |
* | Closes #1050: highlight Java package names after "package" like after "import".Georg Brandl2014-11-041-1/+1
| |
* | Closes #1051: fix misrecognition of throw and return statements as methodGeorg Brandl2014-11-041-3/+5
| | | | | | | | signatures in the Java lexer.
* | Closes #1052: recognize unicode whitespace in JS lexer.Georg Brandl2014-11-041-1/+1
| |
* | Fix docstring.Georg Brandl2014-10-291-1/+1
| |
* | Merged in stephencelis/pygments-main/swift-lang (pull request #410)Tim Hatch2014-10-301-32/+196
|\ \ | |/ | | | | Implement proper Swift lexer
| * Swift: PR FixesStephen Celis2014-10-291-5/+6
| | | | | | | | | | | | - Fix prematurely popped states - Fix @availability - Fix single-digit floats
| * Swift: Address PR feedbackStephen Celis2014-10-291-5/+7
| | | | | | | | | | | | - Use default('#pop') - Fix oddly-wrapped lines - Restore versionadded
| * Swift Lexer: Whitespace not optionalStephen Celis2014-10-241-3/+3
| |
| * Swift Lexer: change " *" to "\s*" for flexibilityStephen Celis2014-10-241-9/+9
| |
| * Implement proper Swift lexerStephen Celis2014-10-231-34/+195
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - No longer inherits from the Objective-C lexer (Swift is not a subset of Objective-C, so the existing lexer highlights incorrectly) - Updated for Swift 1.1 (the existing lexer wasn't even up-to-date with Swift 1.0 GM) - Adds Swift attributes - Adds Swift builtins - Adds string interpolation support - Adds nested comment support - Adds "preprocessor" statement support - Adds implicit block variable support - Parses special comments (reST, MARK, TODO, FIXME) - Parses more Swift constructs than before
* | Improve comment around inherit handling.Tim Hatch2014-10-281-1/+3
| |
* | Improve comments for RegexLexer inheritance.Tim Hatch2014-10-281-0/+6
| |
* | Fix inheritance repetition problem. __mro__ already includes cls.Tim Hatch2014-10-281-1/+1
| |
* | Add test for RegexLexer inheritance (fails with current code).Tim Hatch2014-10-281-0/+94
| |
* | Add #Else to VB.NETUnknown Name2014-10-261-1/+1
|/
* Update BroLexer hex constant.Tim Hatch2014-10-211-1/+1
| | | | | From reading later use, I assume this was meant to match a single character. Removes some double-repetitions from patterns.
* Add regexopt test for suffix ordering.Tim Hatch2014-10-211-0/+8
|
* add a analyse_text to the http lexerGeorg Brandl2014-10-211-0/+4
|
* postgres builtins: dont always import stuff needed for the selfupdate machineryGeorg Brandl2014-10-191-109/+109
|
* Javascript: allow shebangsGeorg Brandl2014-10-171-0/+1
|