aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2020-05-23Fix Doxygen-style comments that refer to parameters.Neil Hodgson1-2/+2
2020-05-23Add new project that builds a Scintilla framework with no lexers.Neil Hodgson5-0/+868
2020-05-23Add file that avoids extra upgrade checks.Neil Hodgson3-0/+24
2020-05-23Hide Visual Studio solution files from Mercurial.Neil1-0/+1
2020-05-23Update Lexilla Xcode project with new lexers and changed version number.Neil1-2/+88
Updage make dependencies files.
2020-05-23Added Info.plist to hold name and version.Neil Hodgson2-4/+36
2020-05-23Add Xcode project for Lexilla.Neil Hodgson2-0/+885
2020-05-22Bug [#2171]. Add some documentation about WM_DPICHANGED.Neil1-4/+4
2020-05-22Hoist repeated test for string selection types into static method.Neil2-4/+8
2020-05-22Bug [#2171]. Implement per-monitor DPI Awareness on Windows.Chris Graham3-12/+29
2020-05-20Update download sizes.Neil1-2/+2
2020-05-20Fix some minor warnings.Neil2-22/+21
2020-05-20SciTE change log.Neil1-0/+6
2020-05-19Bug [#2171]. Implement per-monitor DPI Awareness on Windows.Neil4-21/+67
2020-05-19Encapsulate GetProcAddress in a way that avoids undefined and conditionallyNeil3-31/+38
defined behaviour.
2020-05-19Encapsulate common check for PS, LS, and NEL as UTF8IsMultibyteLineEnd.Neil2-6/+10
Avoids construction of temporary array.
2020-05-19Update version.Neil1-2/+2
2020-05-19Use pathlib in generator scripts.Neil4-58/+56
2020-05-19Remove call to ScintillaData as result not used.Neil1-2/+0
2020-05-17Ensure Lexilla built as well.Neil1-1/+6
2020-05-11Remove lexers from libscintilla.lib / libscintilla.a.Neil2-2/+2
2020-05-17Produce a shared object libscintilla.so that can be dynamically linked to.Neil1-4/+27
Does not include lexers. Separate targets added for shared and static libraries.
2020-05-17On Unix call shared object liblexilla instead of lexilla to match platformNeil3-4/+6
convention.
2020-05-11Set calling convention to stdcall to match clients and old DLL lexers andNeil3-5/+12
export names undecorated.
2020-05-11Support Windows XP.Neil1-1/+15
2020-05-17Shared object files are not source so ignore them.Neil1-0/+1
2020-05-05Fixed bug where a single character line with a single character line endYury Dubinsky4-10/+29
continued state onto the next line.
2020-05-04Change log.Neil1-0/+4
2020-05-04Feature [feature-requests:1347]. Optimize large insertions by using aZufu Liu1-29/+122
table-driven line end discovery algorithm and performing line insertions in batches.
2020-05-04Feature [feature-requests:1347]. Add methods to insert multiple partitions.Neil2-0/+46
2020-05-03Feature [feature-requests:1347]. Add InsertLines method to PerLine interface andNeil9-3/+418
all implementations. This will allow insertion of lines in batches in a future change set. Added tests for PerLine implementations.
2020-05-02Optimize LineVector by maintaining an activeIndices field to avoid callingNeil1-30/+34
LineStartIndex::Active.
2020-05-02InsertEmpty now returns a pointer to the newly added elements to allow caller toNeil2-2/+25
efficiently set those elements.
2020-05-02Allow disabling automatically generated #define constants.Neil1-0/+4
This is for applications that want access to the structures and function definitions but define constants with enum or constexpr.
2020-05-02Feature [feature-requests:1349] Define CopyAllowLine only on Editor, not ↵Neil2-8/+1
subclass.
2020-05-01Make lambdas noexcept.Zufu Liu5-12/+12
2020-05-01Mark Decoration methods noexcept where reasonable.Neil2-34/+34
2020-05-01Change log.Neil1-0/+19
2020-05-01Bug [#2173]. Tweak font measurement so underscores more likely visible.Neil1-2/+2
2020-05-01Allow arbitrary length lines by using std::string instead of array.Neil1-16/+15
2020-05-01Add SCE_ERR_GCC_EXCERPT style for diagnostics introduced by GCC 9.0 likeNeil6-0/+31
73 | GTimeVal last_popdown; | ^~~~~~~~~~~~
2020-05-01Better diagnostics when script failsNeil1-1/+2
2020-05-01Replace deprecated function pango_script_for_unichar with g_unichar_get_script.Neil2-6/+6
2020-04-30Add a script to make it easier to test lexers on Unix.Neil1-0/+7
2020-04-30Clean up - make local function static and remove code that has no effect.Zufu Liu1-3/+1
2020-04-30Bug [#2019]. Fix buffer over-read with absolute reference.Zufu Liu3-5/+36
2020-04-30Fix line ends on example files.Neil3-188/+188
2020-04-30Treat \n and \r\n line ends the same after operands by setting style to comment.Neil1-3/+1
2020-04-30Retrieve errorlist and mmixal files with local line ends so match result filesNeil1-0/+2
when testing.
2020-04-30Add tests for mmixal lexer.Neil5-0/+176