| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2014-12-30 | S-Record lexer: extract reusable parts of helper functions | Markus Heidelberg | 1 | -35/+60 | |
| CalcChecksum() takes a parameter to decide between one's or two's complement. The variable "cs" has been changed to "signed int" to simplifiy calculation of the two's complement with signed arithmetic instead of using bitwise operations, which would cause "overflow" warnings in Coverity without additional "& 0xFF" masking. | |||||
| 2014-12-29 | S-Record lexer: fix the description of the maximum data field digit count | Markus Heidelberg | 1 | -8/+8 | |
| 500 was only true for S3 records with 32-bit address. | |||||
| 2014-12-29 | S-Record lexer: add future-proof highlighting for unknown record types | Markus Heidelberg | 2 | -12/+16 | |
| An S4 record for example, which is not defined in the S-Record specification, will now be highlighted until record end (checksum) instead of aborting after the "byte count" field. The former behaviour looked a bit half-baked. Since the size of the address field is unknown, the address and data fields are highlighted with the same style in the new state SCE_SREC_DATA_UNKNOWN. Alternating styles (ODD/EVEN) for readability of the data field of valid record types are not applied. | |||||
| 2014-12-29 | S-Record lexer: correctly count the characters of an invalid short line | Markus Heidelberg | 1 | -8/+18 | |
| If the line only consisted of 3 digits (e.g. S12), then highlighting of the third one (first digit of the "count" field) was dependent on the content of the subsequent line. Now this digit is always highlighted as valid "byte count", independent on its value, if there is no further digit behind. The function return value can be negative now. | |||||
| 2014-12-27 | Change log. | Neil | 1 | -0/+8 | |
| 2014-12-22 | Avoid warning from cppcheck. | Neil | 1 | -3/+2 | |
| 2014-12-22 | Replace function UnicodeFromBytes with UnicodeFromUTF8 as they are exactly the | Neil | 3 | -15/+48 | |
| same. Add unit tests for UnicodeFromUTF8. | |||||
| 2014-12-20 | Don't use bad value after failed call. | Neil | 1 | -4/+8 | |
| 2014-12-20 | Check for failure of SystemParametersInfo. | Neil | 1 | -8/+9 | |
| 2014-12-17 | More natural looping over visual attributes. | Neil | 1 | -3/+3 | |
| 2014-12-17 | Highlights doc comment keywords; has separate styles for input, output, and | Neil | 4 | -68/+151 | |
| inout ports; and fixes a bug in highlighting numbers. From Haimag Ren. | |||||
| 2014-12-17 | Change log. | Neil | 1 | -0/+4 | |
| 2014-12-12 | LexBash: Empty heredoc delimiters can also be indented | Colomban Wendling | 1 | -1/+2 | |
| 2014-12-12 | LexBash: Only tabulations are allowed as prefix with `<<-` heredoc | Colomban Wendling | 1 | -1/+1 | |
| Only tabulations are allowed to prefix the delimiter on indented here-documents, not any white space. | |||||
| 2014-12-12 | LexBash: Don't allow spaces between `<<` and `-` in a heredoc operator | Colomban Wendling | 1 | -3/+6 | |
| `<<-` is an operator of itself, not two separate tokens `<<` and `-`. This fixes handling of delimiters starting with `-`, like this: cat<< -EOF ... -EOF | |||||
| 2014-12-16 | Feature [feature-requests:#1091]. S-Record lexer added on OS X. | Neil Hodgson | 1 | -0/+4 | |
| 2014-12-16 | When a text margin is displayed, for annotation lines, use the background colour | Neil | 2 | -5/+17 | |
| of the base line. From Joe Mueller. | |||||
| 2014-12-12 | Prevent some static analyzer warnings. | Neil | 1 | -0/+2 | |
| 2014-12-09 | Feature [feature-requests:#1091]. Lexer for Motorola S-Record. | Neil | 6 | -0/+399 | |
| From Markus Heidelberg. | |||||
| 2014-12-09 | Change log. | Neil | 1 | -1/+1 | |
| 2014-12-09 | Using indicators for inline IME. | Neil | 1 | -127/+251 | |
| From johnsonj. | |||||
| 2014-12-08 | Avoid warnings from clang about calling abs with float arguments. | Neil | 2 | -3/+4 | |
| 2014-12-07 | Prevent some static analyzer warnings. | Neil | 1 | -1/+3 | |
| 2014-12-07 | Protect FineTickerCancel from being called when fine tickers not implemented. | Neil | 1 | -6/+5 | |
| Use ShowCaretAtCurrentPosition which understands focus in preference to DropCaret where possible. | |||||
| 2014-12-07 | Replace calls to deprecated methods with their current equivalents. | Neil Hodgson | 2 | -12/+7 | |
| 2014-12-06 | Updated by Xcode 6.1 | Neil Hodgson | 1 | -3/+1 | |
| 2014-12-06 | Change log. | Neil | 1 | -0/+4 | |
| 2014-12-06 | Prevent overlapping text with calltip. | Neil | 2 | -2/+6 | |
| From Mitchell Foral. | |||||
| 2014-11-28 | LexCPP: Also fold on square brackets | Colomban Wendling | 1 | -2/+2 | |
| This allows to fold on array literals for languages like JavaScript that use square brackets to declare array literals. This should not change much for languages that only use square brackets for array indexation as the large majority of the time the open and close brackets are placed on the same line in these cases. | |||||
| 2014-12-06 | Change log. | Neil | 1 | -0/+1 | |
| 2014-12-05 | Change log. | Neil | 1 | -0/+3 | |
| 2014-12-05 | Prevent some static analyzer warnings. | Neil | 1 | -0/+1 | |
| 2014-12-05 | Extract FillVirtualSpace so it is not repeated and can be made less complex in | Neil | 4 | -8/+10 | |
| the future. | |||||
| 2014-12-05 | Using indicators for inline IME. | Neil | 1 | -61/+157 | |
| From johnsonj. | |||||
| 2014-12-03 | Change log. | Neil | 1 | -0/+12 | |
| 2014-12-03 | Qt >= 5.3 has reverted to the 4.x handling of double click events. Undoes | Neil | 1 | -6/+0 | |
| change set [6b9cc8]. | |||||
| 2014-12-02 | Added tag rel-3-5-2 for changeset a797ff255bdf | Neil | 1 | -0/+1 | |
| 2014-11-29 | Add a missing comma to separate word list decriptions. | Neil | 1 | -1/+1 | |
| 2014-11-29 | Updates for 3.5.2 release. | Neil | 7 | -22/+18 | |
| 2014-11-28 | Change log. | Neil | 1 | -0/+4 | |
| 2014-11-25 | Bug [#1420]. CoffeeScript: Describe existing secondary keyword sets | Colomban Wendling | 1 | -0/+3 | |
| 2014-11-25 | Bug [#1420]. CoffeeScript: Drop code that doesn't apply to CoffeeScript | Colomban Wendling | 1 | -166/+9 | |
| Drop obsolete code that was copied from LexCPP but that is not relevant or even valid for CoffeeScript. Closes #1420. | |||||
| 2014-11-24 | SC_TECHNOLOGY_DIRECTWRITEDC is another provisional mode for DirectWrite drawing | Neil | 5 | -20/+65 | |
| which may fix problems with sibling windows. | |||||
| 2014-11-19 | Platform overrides for some drawing and behaviour to benefit PLAT_CURSES. | Neil | 9 | -12/+73 | |
| From Mitchell Foral. | |||||
| 2014-11-19 | Bug [#1670]. Avoid processing mouse move events where the mouse has not moved | Neil | 2 | -6/+19 | |
| as these can cause unexpected dwell start notifications. From Yusuf Ramazan Karagöz. | |||||
| 2014-11-14 | Feature [feature-requests:#1086]. Annotation display style ANNOTATION_INDENTED; | Erik Angelin | 5 | -9/+27 | |
| like _BOXED but no border. | |||||
| 2014-11-13 | Bug [#1643]. Only show system caret for GDI as it interferes with Direct2D. | Neil | 2 | -1/+8 | |
| From Mat Berchtold. | |||||
| 2014-10-20 | Optimize retrieval of empty range. | Neil | 1 | -1/+1 | |
| 2014-10-19 | Avoid warning about assiging pointer to integer. | Neil | 1 | -2/+2 | |
| 2014-10-16 | Reordered searching section so preferred SCI_SEARCHINTARGET API is shown first | Neil | 1 | -99/+94 | |
| to discourage use of other APIs. Fixed some HTML bugs. | |||||
