Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix spaces around operators (RuboCop) | Kornelius Kalnbach | 2019-11-24 | 1 | -1/+1 |
| | |||||
* | support for special type 'var' | Davide Angelocola | 2018-09-30 | 1 | -1/+1 |
| | |||||
* | avoid regexp syntax warnings on Ruby 1.8 | Kornelius Kalnbach | 2017-09-03 | 1 | -1/+1 |
| | |||||
* | restore support for Ruby 1.8.7 | Kornelius Kalnbach | 2017-09-03 | 1 | -1/+1 |
| | |||||
* | compatibility with Ruby < 2 | t-gergely | 2017-07-07 | 1 | -1/+1 |
| | | | As requested by korny. Thanks. | ||||
* | allow for non-ASCII identifiers | t-gergely | 2017-07-04 | 1 | -1/+1 |
| | |||||
* | use autoload again | Kornelius Kalnbach | 2013-10-22 | 1 | -1/+1 |
| | |||||
* | minor tweaks to generator and scanner edge cases | Kornelius Kalnbach | 2013-03-11 | 1 | -1/+1 |
| | |||||
* | Bug #6: merge ConradIrwin's approach with korny's | Kornelius Kalnbach | 2011-12-27 | 1 | -1/+1 |
| | |||||
* | Remove assumption about a stable $: | Conrad Irwin | 2011-12-23 | 1 | -1/+1 |
| | | | | | | | | | | In some environments (e.g. [1]) $: can change between loading the library and using it. To avoid this problem, we always pass an absolute path to autoload internal modules. [1] https://github.com/pry/pry/issues/280 | ||||
* | pretty (longer) token class names; closes #347 | Kornelius Kalnbach | 2011-08-19 | 1 | -1/+1 |
| | |||||
* | renamed pre_* token kinds to predefined_* | murphy | 2011-04-17 | 1 | -2/+2 |
| | |||||
* | Adjust Java scanner to new Plugin interface. | murphy | 2011-02-28 | 1 | -2/+3 |
| | |||||
* | Got rid of the old streaming system (see #142). | murphy | 2010-05-01 | 1 | -1/+0 |
| | |||||
* | Direct Streaming! See #142 and Changes.textile. | murphy | 2010-05-01 | 1 | -54/+41 |
| | |||||
* | Fixing bug in Java and JSON scanners (unfinished strings where not closed ↵ | murphy | 2010-04-17 | 1 | -1/+1 |
| | | | | correctly). | ||||
* | Java Scanner: Package names are recognized, along with some code cleanup. ↵ | murphy | 2010-04-02 | 1 | -6/+14 |
| | | | | Closes #210. | ||||
* | Cleanups for C, C++, CSS, Delphi, Groovy, Java, PHP, Python, RHTML, XML, and ↵ | murphy | 2010-03-26 | 1 | -13/+16 |
| | | | | YAML scanners. | ||||
* | Cleanups. | murphy | 2009-12-30 | 1 | -1/+1 |
| | |||||
* | Updated Java scanner: Higlighting of keywords according to java.sun.com. | murphy | 2009-10-19 | 1 | -11/+14 |
| | | | | | | * added :reserved, :pre_constant, :exception classes for idents and keywords * "threadsafe" isn't a Java keyword | ||||
* | Java scanner: | murphy | 2009-04-14 | 1 | -3/+4 |
| | | | | | | | | | | | * Fixed test after r305 broke it. * [FIXED] Save last_token_dot state through comments. C scanner: * Added file_extension declaration. ** All scanners should have this. * Code cleanup. | ||||
* | Java scanner highlights interface declarations as :class. | murphy | 2009-02-20 | 1 | -1/+1 |
| | |||||
* | Java Scanner: remove :regexp cases, use :pre_type for built-in types. | murphy | 2009-01-13 | 1 | -10/+3 |
| | |||||
* | New: *Java Scanner* (closes #42). | murphy | 2008-09-21 | 1 | -0/+179 |
* Based on JavaScript, does a good job, but may need more polish. * Java::BuiltinTypes::List is a helper constant that contains 2389 Java types. ** The list was generated from TextMate's Java bundle with the help of SimpleRegexpScanner. * I added the JRuby core classes as example code for testing (1.8 MB) JavaScript Scanner: * Fixed recognition of floats and algebraic signs. ** Still needs work - we need to distinguish i-1 from i+-1. More changes: * New: "SimpleRegexpScanner":http://murfy.de/simple-regexp-scanner * Added new token class :annotation along with CSS styles. ** Should be useful for Python, too. * coderay_suite warns if no scanner was found for this language. * PluginHost#default can be called without parameter (will return default id) |