aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2018-03-08Change log.Neil1-0/+4
2018-03-08Create static library libscintilla.a or libscintilla.lib on Windows.Neil4-42/+57
Stop creating Lexers.a static library. Harmonize make files.
2018-03-08Updated requied compiler versions.Neil1-2/+2
2018-03-08Bug [#1952]. Match identifier chains with dots and colons.Kein-Hong Man2-56/+98
2018-03-06Feature [feature-requests:#1210]. Maxima lexer added.Gunter Königsmann9-0/+258
2018-03-05Bug [#1999]. Fix hang lexing a Lua label where the range ends before "::".Neil2-0/+9
2018-03-03Promote methods from int to ptrdiff_t to allow extension to 64-bits.Neil2-8/+8
2018-03-03Use Position and Line types in ScintillaCocoa to allow for later changes.Neil1-7/+7
2018-03-01Mark variables as const where simple.Neil17-281/+281
2018-03-01Use C++ cast in preference to C cast.Neil1-1/+1
2018-03-01Mark pointer argument as const as not written to.Neil2-7/+7
2018-03-01Avoid warning with explicit destructor.Neil1-0/+1
2018-03-01Use make_unique in preference to new.Neil12-46/+46
From Effective Modern C++ Item 21.
2018-03-01Update to c++17 so make_unique is available.Neil1-1/+1
2018-02-28SciTE change log.Neil1-0/+5
2018-02-27Use 'const'.Neil1-1/+1
2018-02-27Use virtual to ensure LexState overrides LineEndTypesSupported method.Neil2-2/+2
2018-02-27Added <utility> and <tuple> to header order and moved POSIX header <sys/time.h>Neil3-5/+9
after standard C++ language headers.
2018-02-26Added string_view to order.Neil1-0/+1
2018-02-26SciTE changelog.Neil1-0/+4
2018-02-24Fix move-extends-selection mode for rectangular and line selections.Mitchell Foral4-17/+138
2018-02-22Bug [#1993]. Fix building on Mingw/MSYS to perform file copies and deletions.Tobias Kühne2-1/+5
2018-02-17For rectangular selections, pressing Home or End now moves the caret to the HomeVicente2-3/+18
or End position instead of the limit of the rectangular selection.
2018-02-17SciTE changelog.Neil1-0/+4
2018-02-14SciTE change log.Neil1-0/+13
2018-02-12Added tag rel-4-0-3 for changeset 1bf8b7c50995Neil1-0/+1
2018-02-10Update Cocoa test app to Xcode 9.2 settings.rel-4-0-3Neil Hodgson1-7/+15
2018-02-10Eliminate calls of Scintilla APIs that have been removed.Neil Hodgson1-3/+0
2018-02-08Updating for 4.0.3.Neil8-20/+22
2018-02-06[Bug #1983] Fix double tap word selection on Windows 10 1709 Fall Creators ↵Dimitar Radev2-1/+6
Update. Times of observed mouse events went backwards causing unsigned overflow.
2018-02-02Implement SC_DOCUMENTOPTION_STYLES_NONE.Neil12-21/+75
2018-02-02SciTE change log.Neil1-0/+5
2018-02-01SciTE change log.Neil1-0/+5
2018-02-01Templatize RunStyles so it can be over ranges of different types and containNeil6-75/+100
different style types. Currently only instantiated over <int, int>.
2018-02-01Templatize Partitioning so it can hold different types.Neil8-37/+39
2018-01-31Document bytes argument to SCI_CREATEDOCUMENT.Neil1-0/+3
2018-01-26Extend SplitVector to allow more than 2 billion elements on 64-bit systems.Neil4-52/+52
2018-01-26Add documentOption argument to SCI_CREATELOADER.Neil4-14/+30
2018-01-30Disable animated find indicator on macOS 10.12 as it causes drawing failures.Neil Hodgson2-2/+7
2018-01-30SciTE changelog.Neil1-0/+4
2018-01-28SciTE changelog.Neil1-0/+6
2018-01-28Match declaration signature to definition signature.Neil1-1/+1
2018-01-28Use std::end when filling arrays as reduces chance of mistake.Neil5-7/+13
2018-01-28Replace Sci::clamp with C++ standard std::clamp function.Neil4-32/+23
std::clamp is from C++17.
2018-01-28Use std::abs in preference to abs as std::abs is generic and abs casts to intNeil2-3/+4
which may drop information.
2018-01-28Allow C++17 in all build and project files.Neil5-6/+10
2018-01-26Ensure build allows C++17.Neil Hodgson1-2/+4
ARC setting is matching same setting at different scope so no effect.
2018-01-22Make clamp generic so can be used on more types.Neil1-6/+3
Updated comments.
2018-01-21Match variable types to method so will build if switched to 64-bit.Neil1-2/+2
2018-01-21Fix namespace so can build inside Visual C++.Neil1-0/+4