| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2020-01-06 | Backport: Bug [#2135]. Set candidate window position in windowed IME mode. | Zufu Liu | 2 | -0/+7 | |
| Backport of changeset 7947:9d42a88f08cc. | |||||
| 2020-01-09 | Backport: Remove support for CF_TEXT clipboard format. CF_UNICODETEXT is now ↵ | Neil | 2 | -45/+5 | |
| used in all cases. Windows automatically provides CF_UNICODETEXT when CF_TEXT on clipboard. This does not change drag-and-drop as that depends on CF_TEXT such as when dragging from DBCS. Backport of changeset 7946:4dad3058a477. | |||||
| 2020-03-26 | Switch to 1-based indices in Lua. | mitchell | 4 | -28/+28 | |
| The only external, 3rd party lexers that would be affected are those implementing their own fold functions. | |||||
| 2020-03-22 | Formatting. | mitchell | 1 | -1/+2 | |
| 2020-03-22 | Added userdata pointer for SCNotifications on curses. | mitchell | 2 | -9/+13 | |
| 2020-03-16 | Modernized and reformatted curses platform code. | mitchell | 3 | -211/+239 | |
| Also fixed a minor bug in autocompletion list width display. | |||||
| 2020-03-11 | LexLPeg now implements DefaultLexer and NameOfStyle(). | mitchell | 2 | -77/+71 | |
| The SCI_PRIVATELEXERCALL(styleNum, name) API is no longer supported. | |||||
| 2020-03-10 | Fixed LexLPeg reporting of known lexers on Win32. | mitchell | 1 | -5/+7 | |
| 2020-03-07 | LexLPeg can now report a list of known lexers via SCI_PRIVATELEXERCALL. | mitchell | 2 | -70/+153 | |
| 2020-03-06 | Updated curses example to use new SCI_LOADLEXERLIBARY API. | mitchell | 1 | -1/+2 | |
| 2020-03-06 | More LexLPeg refactoring, including a safer Lua state. | mitchell | 2 | -106/+155 | |
| Do not load either `io` (Lua 5.1) or `package` modules and updated lexer.lua functions to utilize safer versions of `require()` and `package.searchpath()`. Also support ';'-separated paths for lexers via existing `lexer.lpeg.home` property or new SCI_LOADLEXERLIBRARY API. Refactor to use property constants and class methods for property setting. | |||||
| 2020-03-06 | More LexLPeg refactoring. | mitchell | 1 | -70/+92 | |
| Added stack assertions and append traceback to error messages. | |||||
| 2020-03-06 | Formatted LexLPeg.cxx. | mitchell | 1 | -694/+701 | |
| 2020-03-05 | Refactored LexLPeg. | mitchell | 1 | -318/+343 | |
| Style property settings are now case-sensitive. | |||||
| 2020-03-05 | Fixed building LPeg lexer on GTK. | mitchell | 1 | -2/+2 | |
| 2020-03-04 | Modernize LexLPeg. | mitchell | 1 | -58/+54 | |
| 2020-01-07 | Updated BACKPORTING. | mitchell | 1 | -0/+39 | |
| 2020-01-07 | lexlua: Removed unnecessary `lpeg.B()` in Rust lexer. | mitchell | 1 | -2/+2 | |
| Rule order makes it such that the 'r#' prefix will never happen prior to a keyword. | |||||
| 2020-01-06 | Fixed runtime error introduced by r7925 (changset 58e9ef4392cd). | mitchell | 1 | -2/+2 | |
| 2020-01-06 | Backport: Bug [#2147]. Don't clear clipboard before copying text. | Neil | 2 | -1/+4 | |
| Backport of changeset 7926:184f4b475993. | |||||
| 2020-01-06 | More synchronizing LongTerm3 with default. | mitchell | 7 | -14/+21 | |
| Ideally this covers anything missed during the backport process. | |||||
| 2020-01-05 | Added Sci::round() and Sci::lround() for better compatibility with the ↵ | mitchell | 5 | -15/+28 | |
| default branch. Some olders MacOSX SDKs do not have std::round() or std::lround(). | |||||
| 2020-01-05 | Updated checkdeps.mak. | mitchell | 1 | -1706/+1896 | |
| 2020-01-05 | Added Sci::make_unique() and Sci::size() for better compatibility with the ↵ | mitchell | 24 | -92/+143 | |
| default branch. std::make_unique() is c++14 and std::size() is c++17. | |||||
| 2020-01-05 | Backport: Fix some warnings. | Neil | 3 | -4/+4 | |
| Backport of changeset 7921:4b676e61f983. | |||||
| 2020-01-05 | Synchronizing LongTerm3 with default. | mitchell | 21 | -51/+64 | |
| Ideally this covers anything missed during the backport process. | |||||
| 2020-01-04 | Always use string property values in lexlua themes. | mitchell | 3 | -6/+6 | |
| 2020-01-04 | Removed accidentally backported lexilla files. | mitchell | 3 | -221/+0 | |
| 2020-01-04 | Backport: Feature [feature-requests:#1328] Handle CRLF in ↵ | Mark Reay | 2 | -7/+10 | |
| SCE_RAKU_COMMENTLINEs and HEREDOCs style termination. Backport of changeset 7915:4bdfd413a442. | |||||
| 2020-01-04 | Backport: Mention Raku in change log. | Neil | 1 | -0/+5 | |
| Backport of changeset 7914:3be72c607651. | |||||
| 2020-01-04 | Backport: Added Raku lexer and style properties and example files | mitchell | 13 | -0/+1935 | |
| Backport of changeset 7900:bcb95162cd06. | |||||
| 2020-01-01 | Backport: Be more accurate for 'make clean'. | Neil | 2 | -2/+6 | |
| Backport of changeset 7874:295a6e54d582. | |||||
| 2020-01-04 | Backport: Define ILexerWithIdentity with methods for retrieving name, ID, ↵ | mitchell | 33 | -64/+270 | |
| and property values. Implement ILexerWithIdentity on object lexers. Implement ILexerWithIdentity on LexerSimple wrapper for function lexers. Backport of changeset 7870:6ffcbd42288c, but with a new interface compatible with ILexer, not ILexer5. | |||||
| 2019-11-09 | Backport: Remember string values in OptionSet so can be easily retrieved. | Neil | 1 | -1/+14 | |
| Backport of changeset 7869:7dac229bc696. | |||||
| 2019-12-14 | Backport: Remove links to lexers with SCI_EMPTYCATALOGUE definition. | Neil | 3 | -0/+10 | |
| This allows building a version of SciTE that is statically linked to Scintilla and does not include any lexers but allows the use of lexers provided by loading a DLL. Backport of changeset 7867:f17a228be4d8. | |||||
| 2020-01-03 | Backport: Move collection of modules from Catalogue.cxx to ↵ | mitchell | 14 | -124/+90 | |
| CatalogueModules.h so it can be reused. Backport of changeset 7866:fff1071ea1db. | |||||
| 2019-12-13 | Backport: Implement DynamicLibrary on Cocoa. | Neil | 4 | -5/+55 | |
| Backport of changeset 7865:a5c2f8a3f171. | |||||
| 2019-12-13 | Backport: Move automatic numbering of external lexers from Catalogue to ↵ | Neil | 2 | -6/+5 | |
| ExternalLexer. This is preparing to move much of Catalogue into a header for reuse. Backport of changeset 7864:616ca0866c49. | |||||
| 2020-01-03 | Backport: Use safe mechanism for converting between function pointers and void*. | mitchell | 2 | -15/+14 | |
| Backport of changeset 7863:507307a6c315. | |||||
| 2020-01-03 | Backport: Use safe mechanism to convert to function pointers. | mitchell | 1 | -10/+23 | |
| Mark noexcept where reasonable. Check that functions are available. Backport of changeset 7862:f4cf92e43f48. | |||||
| 2019-12-13 | Backport: Hide details of ExternalLexer and export ExternalLexerLoad ↵ | Neil | 3 | -58/+72 | |
| function only. Backport of changeset 7861:0680563a97c5. | |||||
| 2020-01-03 | Updated makefile dependencies. | mitchell | 1 | -13/+11 | |
| 2019-12-13 | Backport: Move SCI_LOADLEXERLIBRARY from platform layers to ScintillaBase.cxx. | Neil | 10 | -79/+18 | |
| This allows removal of related #include statements. Backport of changeset 7860:4ca969c2fa45. | |||||
| 2020-01-03 | Fixed a build error on Windows introduced by r7280 (changeset 9cf6a15d6c85). | mitchell | 3 | -12/+18 | |
| 2020-01-03 | Fixed a stray gnu++0x that crept in in recent makefile backports. | mitchell | 1 | -1/+1 | |
| 2019-12-30 | Backport: Remove Scintilla.def prerequisite as not used by gcc or clang. | Neil | 1 | -4/+4 | |
| That allows simplifying the recipe to just use the prerequisites $^. Backport of changeset 7857:09ace49cbc12. | |||||
| 2019-12-30 | Backport: Use pattern rules instead of suffix rules as they are clearer. | Neil | 2 | -5/+10 | |
| Add a .PHONY target to avoid possible failure caused by file with same name. Backport of changeset 7856:477749c2f095. | |||||
| 2019-12-30 | Backport: Remove line end whitespace. | Neil | 1 | -1/+1 | |
| Backport of changeset 7855:cdee9adbbb07. | |||||
| 2019-12-29 | Backport: Builds without GNU extensions so set to standard C++11. | Neil | 1 | -1/+1 | |
| Backport of changeset 7854:ab518c9df18e. | |||||
| 2019-12-29 | Backport: Standardize names and order between make files on win32 and gtk. | Neil | 3 | -71/+104 | |
| Backport of changeset 7853:662b62122bcb. | |||||
