| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2019-01-05 | Backport: Recognize negative line numbers in GCC-format messages. | Neil | 1 | -0/+5 | |
| Cppcheck shows some whole-file errors as line -1. Backport of changeset 7191:c9ef21df2e3c. | |||||
| 2018-12-12 | Backport: Feature [feature-requests:#1247]. Handles message groups as well ↵ | Iain Clarke | 1 | -0/+5 | |
| as messages. Backport of changeset 7186:8849447859eb. | |||||
| 2018-12-12 | Backport: Bug [#2069]. LexCPP: fix bug in arithmetic calculation by adding ↵ | Jannick | 1 | -0/+5 | |
| precedence levels The precedence for the implemented arithmetic operators +,-,%,*,/ is added, such that the calculations produce the correct results honoring the standard precedence levels. * Replace characterset setArithmeticOp by setAddOp and setMultOp. * Replace precedence precArithmetic by precMult and precAdd * (EvaluateTokens): Apply new precedences. This fixes the bug in the arithmetic calculation: // lines with 'false' should not be highlighted, // those with 'true' should be. #if 1 + 2 * 3 == 9 false #endif #if (1 + 2) * 3 == 9 true #endif #if 1 + 2 * 3 == 7 true #endif #if 1 == 5 % 2 true #endif #if 6 - 7 == -1 true #endif #if 25 / 5 * 5 == 25 true #endif #if 1 + 2 * 3 % 2 == 1 true #endif #if 1 + 2 * 3 % 2 == 2 + 1 false #endif Backport of changeset 7184:48861f53f719. | |||||
| 2018-12-04 | Backport: Bug [#2062]. Interpret continued preprocessor lines correctly by ↵ | Neil | 1 | -0/+5 | |
| reading all of the logical line. Backport of changeset 7182:a40b6aac5b1f. | |||||
| 2018-11-29 | Backport: Notify with SC_UPDATE_SELECTION when user performs a multiple ↵ | Neil | 1 | -0/+3 | |
| selection add. Backport of changeset 7181:77e17d7f972b. | |||||
| 2018-11-28 | Backport: Bug [#2054]. Reimplemented as an object lexer to support substyles ↵ | Kacper Kasper | 1 | -0/+4 | |
| for multiple sets of keywords and SCI_PROPERTYNAMES. Backport of changeset 7178:a581d5f71f49. | |||||
| 2018-11-21 | Backport: Feature [feature-requests:#1242]. Add lexer for Nim | Jad Altahan | 1 | -0/+8 | |
| Backport of changeset 7173:3e6cf75864cc. | |||||
| 2018-11-20 | Bug [#2061]. Fix a crash that occurred when entering a dead key diacritic then a | Neil Hodgson | 1 | -0/+13 | |
| character that can not take that diacritic, such as option+e (acute accent) followed by g. Backport of changeset 7171:d07ee885f2dd, but translated to C++11. | |||||
| 2018-10-31 | Updated for 3.10.1.rel-3-10-1 | mitchell | 3 | -8/+17 | |
| 2018-10-18 | Backport: Updated case conversion and character categories to Unicode 11. | Neil | 1 | -0/+3 | |
| Fixed history by moving new items into the pending version. Backport of changeset 7120:3d7ba41494e8. | |||||
| 2018-10-17 | Backport: Bug [#2051]. Correct return value from SCI_MARKERADD for invalid ↵ | Neil | 1 | -4/+8 | |
| lines. Backport of changeset 7117:0cbbfacbf008. | |||||
| 2018-10-15 | Backport: Set number of lines wrapped in one go to maintain responsiveness ↵ | Neil | 1 | -0/+4 | |
| and efficiency by measuring speed and limiting to around 10 milliseconds. Backport of changeset 7114:efe194662480. | |||||
| 2018-10-11 | Backport: Add SCI_SETCOMMANDEVENTS API to allow turning off command events. | Neil | 2 | -1/+17 | |
| This can reduce the time taken to fold a document by half. Backport of changeset 7110:09c647755bed. | |||||
| 2018-09-30 | Backport: Synchronize definition and documentation. | Neil | 1 | -3/+3 | |
| Backport of changeset 7102:927e7d62e917. | |||||
| 2018-09-24 | Backport: Bug [#2045]. LexCPP: Fix 'elif' token length | huki | 1 | -2/+7 | |
| Backport of changeset 7094:fa4b41e8a452. | |||||
| 2018-09-20 | Backport: Fix highlighting of non-ASCII characters in links. | maboroshin | 1 | -0/+5 | |
| Backport of changeset 7092:a55c26c645f8. | |||||
| 2018-09-06 | Backport: Bug [#2038]. Add explanation SCN_CHARADDED sent during inline IME ↵ | Neil | 1 | -0/+3 | |
| composition. Backport of changeset 7081:892c361b3969. | |||||
| 2018-09-04 | Backport: Feature [feature-requests:#1144]. Add folding for shell if, do, ↵ | Colomban Wendling | 1 | -0/+4 | |
| and case. Implemented by Zufu Liu and Colomban Wendling. Backport of changeset 7078:54561e3cbdff. | |||||
| 2018-08-16 | Backport: For reverse arrow margin cursor, move hotspot to the tip of the arrow. | Neil Hodgson | 1 | -0/+3 | |
| This fixes a bug where clicking seemed to affect the wrong margin. Backport of changeset 7075:bcf0028997ea. | |||||
| 2018-07-10 | Backport: Optional indexing of line starts in UTF-8 documents by UTF-32 code ↵ | Neil | 2 | -39/+92 | |
| points and UTF-16 code units added. Converted instances of C++17 std::string_view to C++11. Also used const_casts where appropriate to fix compile errors. Backport of changeset 7063:0d5edc93e280. | |||||
| 2018-06-21 | Backport: Feature [feature-requests:#1185]. Add lexers for SAS and Stata. | Luke Rasmussen | 1 | -0/+13 | |
| Backport of changeset 7056:974bc87e0696. | |||||
| 2018-06-30 | Updated for 3.10.0.rel-3-10-0 | mitchell | 3 | -8/+23 | |
| 2018-06-06 | Backport: SC_WRAPINDENT_DEEPINDENT added to indent two tabs from previous line. | Henrik Hank | 2 | -3/+15 | |
| Backport of changeset 7024:72c92ed3dc10. | |||||
| 2018-05-28 | Backport: Add styles for diffs containing patches. | Andreas Rönnquist | 1 | -0/+8 | |
| Backport of changeset 7004:a1f932ccdee6. | |||||
| 2018-05-22 | Backport: Add INDIC_GRADIENT and INDIC_GRADIENTCENTRE indicator types. | Neil | 3 | -0/+24 | |
| Backport of changeset 6966:872900d3ceb0. | |||||
| 2018-05-25 | Backport: Draw invalid bytes in DBCS when detected as blobs in a similar way ↵ | mitchell | 1 | -0/+4 | |
| to UTF-8. Backport of changeset 6962:514fde42ccbf, but without std::string_view. | |||||
| 2018-05-16 | Backport: Fix regex crash reported with libstdc++ on macOS that occurs | Neil Hodgson | 1 | -0/+3 | |
| when the regex has a locale imbued. Backport of changeset 6953:85ff33e92309. | |||||
| 2018-05-15 | Backport: Fix crashes for invalid DBCS characters when dragging text, ↵ | Neil Hodgson | 1 | -0/+4 | |
| changing case of text, case-insensitive searching, and retrieving text as UTF-8. Backport of changeset 6952:7bfe9ec5222a. | |||||
| 2018-05-13 | Backport: When line end characters are displayed, indicators are drawn ↵ | Neil | 1 | -0/+3 | |
| under/over them. Backport of changeset 6934:c0ca57c954c8. | |||||
| 2018-05-06 | Note platform interface removal of ElapsedTime class. | mitchell | 1 | -0/+4 | |
| Since C++11 does not support class deprecations, ElapsedTime was removed. | |||||
| 2018-05-06 | Backport: Feature [feature-requests:#1166]. Property ↵ | Iain Clarke | 1 | -0/+4 | |
| lexer.edifact.highlight.un.all highlights UN* segments. Backport of changeset 6923:5f511df4fe9f. | |||||
| 2018-05-02 | Backport: Add "change team" and "endteam" folding terms. | darmar | 1 | -0/+4 | |
| Backport of changeset 6781:6ededeebe34c. | |||||
| 2018-04-19 | Backport: SC_PRINT_SCREENCOLOURS doesn't force the background colour of line ↵ | Nicholai Benalal | 2 | -3/+19 | |
| numbers white. Backport of changeset 6700:daa126b86c17. | |||||
| 2018-05-05 | Backport: Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than ↵ | mitchell | 2 | -11/+42 | |
| 2 GigaBytes. This option is provisional and experimental. Backport of changesets 6696:9729ff36c5b1 and 6723:cffe824ab55e. Also added '#include <cstddef>' to top of src/RESearch.cxx to fix 32-bit build error. | |||||
| 2018-04-13 | Backport: Fix bug with regular expression searches failing to match at line ↵ | Neil | 1 | -0/+8 | |
| start or end. This was a work-around for infinite loops when replacing empty matches and this is now the application's responsibility. Backport of changeset 6683:bcae0331720b. | |||||
| 2018-04-11 | Backport: Set the last X chosen when SCI_REPLACESEL called to ensure macros ↵ | Neil | 1 | -0/+4 | |
| work when text insertion followed by line up or down. Backport of changeset 6679:480de02f71f2. | |||||
| 2018-04-07 | Backport: Add item and reorder. | Neil | 1 | -3/+6 | |
| Backport of changeset 6675:ac57ef9d455e. | |||||
| 2018-04-05 | Backport: Switching to https. | Neil | 5 | -503/+504 | |
| Backport of changeset 6674:f2293f8e3cca. | |||||
| 2018-04-04 | Backport: Remove automatic detection of Direct2D support during build. | Neil | 1 | -0/+4 | |
| DISABLE_D2D may still be defined to remove Direct2D features. Backport of changeset 6672:9c1997a14d89. | |||||
| 2018-04-04 | Backport: Move DLL entry points DllMain and Scintilla_DirectFunction into ↵ | Neil | 2 | -9/+14 | |
| ScintillaDLL.cxx to simplify build process by eliminating the compilation of ScintillaWin.cxx into ScintillaWinS.o|obj. Backport of changeset 6670:cfe90078d684. | |||||
| 2018-04-04 | Backport: Bug [#2006]. State SCN_UPDATEUI is an indication that change may ↵ | Neil | 1 | -5/+7 | |
| have occurred and not that a change definitely occurred. Backport of changeset 6668:3f20bac89b30. | |||||
| 2018-04-03 | Backport: Moved web page for LongTerm3 to SourceForge so it can be updated ↵ | Neil | 1 | -1/+1 | |
| by others. Backport of changeset 6667:d65ed0ee2893. | |||||
| 2018-05-05 | Backport: Feature [feature-requests:#1211]. Use pre-computed table for ↵ | mitchell | 1 | -0/+14 | |
| UTF8BytesOfLead. Friendlier treatment of invalid UTF-8. Add tests for UniConversion handling invalid UTF-8. Simplify UTF8Classify tests. Backport of changeset 6643:ebbb4e5aaf93. | |||||
| 2018-05-05 | Use correct domain for scintilla380 release zip. | mitchell | 1 | -1/+1 | |
| 2018-03-22 | Update changelog with LPeg lexers and curses additions. | mitchell | 1 | -0/+6 | |
| 2018-03-22 | Updating for 3.8.0. | mitchell | 3 | -7/+7 | |
| 2018-03-16 | Backport: Remove line-end white space. | Neil | 1 | -1/+1 | |
| Backport of changeset 6625:2dd6b8049c4e. | |||||
| 2018-03-08 | Backport: Change log. | Neil | 1 | -0/+3 | |
| Backport of changeset 6478:e7f3cfe25244. | |||||
| 2018-03-08 | Backport: Create static library libscintilla.a or libscintilla.lib on Windows. | Neil | 1 | -1/+2 | |
| Stop creating Lexers.a static library. Harmonize make files. Backport of changeset 6477:a65186aab9f9. | |||||
| 2018-03-08 | Backport: Bug [#1952]. Match identifier chains with dots and colons. | Kein-Hong Man | 1 | -0/+4 | |
| Backport of changeset 6475:8fb85a29591f. | |||||
