aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
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
2018-01-21Type casts in case Sci::Position and Sci::Line are extended to 64-bits.Neil1-14/+14
Use of const where reasonable.
2018-01-20Credit for markdown.properties.Neil1-0/+2
2018-01-11Add ENABLE_BIDIRECTIONAL option to make files.Neil2-1/+9
2017-12-19Start of bidirectional code - implement SCI_SETBIDIRECTIONAL.Neil7-5/+65
2018-01-10Added Textilosaurus.Neil1-0/+4
2018-01-02[Bug #1985] Add 'while' keyword to Matlab lexer keywords that start a fold blockJohn Donoghue2-0/+5
* lexers/LexMatlab.cxx (CheckKeywordFoldPoint): add check for while keyword
2017-12-14Added credit for SciTE update.Neil1-0/+1
2017-12-13Use explicit typedefs instead of deprecated derivation from std::iterator.Greg Smith1-3/+21
This fixes a C4996 / STL4015 warning from Visual C++ 2017.5 that the std::iterator class template is deprecated in C++17.
2017-11-21Update make dependencies due to splitting off ILoader.h.Neil Hodgson1-89/+107
2017-11-21Update marshalling of signals from Scintilla, changing deprecated NONE to VOID.Neil Hodgson3-42/+39
Has no effect on clients as NONE was an alias for VOID.
2017-11-20Add SCI_GETMOVEEXTENDSSELECTION.Mitchell Foral5-0/+15
2017-11-20Add section for 4.0.3 and move posr-4.0.2 items into it.Neil1-8/+16
2017-11-09Close autocompletion list for escape and delete on macOS 10.13 as the windowchinhster2-1/+6
was emptying but stayed visible.
2017-11-05Stop treating '\' as an escape character in strings.Vicente2-7/+29
Detect character literals and assign SCE_VHDL_STRING to them.
2017-11-05Indent more uniformly with spaces instead of tabs.Vicente1-34/+34
2017-10-30Fixed wxWindows -> wxWidgets.Neil1-2/+2
2017-10-26Added tag rel-4-0-2 for changeset 96becb885ce4Neil1-0/+1
2017-10-26Updates for 4.0.2.rel-4-0-2Neil8-16/+17
2017-10-26Change log.Neil Hodgson1-0/+4
2017-10-26Disable the animated find indicator on macOS 10.13 where it fails.Neil Hodgson1-2/+20
2017-10-26Fix nested Django tags inside a comment breaking highlighting of rest of file.Stephan Deibel2-1/+5
2017-10-26Fix bad formatting.Neil1-9/+1
2017-10-26Bug [#1979]. Fix Cocoa hang when Scintilla loaded from SMB share on macOS 10.13.Chinh Nguyen2-5/+31
2017-10-23Document style metadata APIs.Neil2-3/+24