aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2020-04-10Bug [#2168]. Fix bug where 'µ' (Micro Sign) case-insensitively matches '?'.Neil2-3/+9
2020-04-10Bug [#2167]. Add line copy format on clipboard, compatible with Visual Studio.Justin Dailey2-1/+37
2020-04-09Typo.Zufu Liu1-1/+1
2020-04-08Removed superfluous space.Neil1-2/+0
2020-04-08Simplify PerLine, remove casts, use noexcept, const, & constexpr where possible.Neil4-60/+56
2020-04-08Feature [feature-requests:1344]. Add methods for iterating through the markerIain Clarke10-3/+103
handles and marker numbers on a line.
2020-04-07Use noexcept and const where possible.Neil2-10/+10
2020-04-07Use const as avoids warning.Neil2-2/+2
2020-04-07Bug [#1624]. Fix brace styling in Batch lexer so that brace matching works.Yury Dubinsky6-389/+484
Bug [#1906], Bug [#1997], and Bug [#2065] also fixed.
2020-04-06Typo.Neil1-1/+1
2020-04-06Change log.Neil1-0/+6
2020-04-06Bug [#2164]. Change line comments to terminate at next line start.Neil5-545/+545
This changes the lexing test results a lot since line comments are common.
2020-04-06Change log.Neil1-0/+4
2020-04-05Implement access to the identifier of an ILexer5. This also stops unexpectedNeil1-2/+14
container lexing when a lexer is set.
2020-04-05Feature [feature-requests:1345]. Use ListBox_ macros in preference to LB_Neil1-10/+10
messages. Modify types to match.
2020-04-05Feature [feature-requests:1345] Use more typesafe code to clear window pointers,Neil3-14/+9
share implementation of window pointers between files, use GetWindowStyle.
2020-04-05Perform autoscroll when mouse on pixel just below window.Mitchell Foral1-1/+1
This mostly helps the curses platform where a line of text is a single 'pixel'.
2020-03-26Add Visual C++ project files for Lexilla.DLL and Scintilla.DLL with no lexers.Neil3-0/+350
2020-04-02Fix typo.Neil1-1/+1
2020-03-31Pass argument as unique_ptr to show transfer of ownership. Add const and ↵Neil3-6/+6
noexcept.
2020-03-27Avoid casts by returning size_t from GetExpanded.Neil3-5/+5
2020-03-29Widen types to size_t to match change from int to position of CallTipSetHltNeil4-84/+97
in Scintilla.iface.
2020-03-29Extract arrow drawing to function. Use noexcept, const and other minor changesNeil2-49/+61
to fix warnings before making widening types in the next change set.
2020-03-29Update documentation to match changes in Scintilla.iface.Neil1-15/+15
2020-03-29Use correct wider types.Mitchell Foral1-4/+4
2020-03-26Fix spelling mistakes.Neil13-26/+26
2020-03-25SciTE change log.Neil1-0/+6
2020-03-25Replace const with constexpr where possible.Neil1-10/+6
2020-03-25Fix link warning by using incorrect subsystem value for 64-bit Windows XP.Neil1-0/+6
Relies on Platform environment variable and defaults to 32-bit.
2020-03-25Replace static_cast with dynamic_cast for better type safety and adherence toNeil1-1/+1
C++ Core Guidelines C.146.
2020-03-24Use noexcept where possible.Neil4-34/+38
2020-03-24Use noexcept where possible.Neil2-21/+21
2020-03-23Use noexcept, const, and constexpr where possible.Neil2-17/+17
2020-03-23Replace const with constexpr where possible.Neil1-4/+4
2020-03-23perLineData is polymorphic so replace static_cast with dynamic_cast for betterNeil1-5/+5
type safety and adherence to C++ Core Guidelines C.146.
2020-03-23Drop possibility of Sci_Position, Sci::Line, Sci::Position not being ptrdiff_t.Neil1-8/+8
This reduces casting.
2020-03-21Change log.Zufu Liu1-0/+4
2020-03-21Bug [#2149]. Enable windowed IME on Wayland by setting as transient for main.Zufu Liu2-2/+13
2020-03-21Remove some casts that are not needed.Zufu Liu1-3/+2
2020-03-19Use dynamic_cast and assertion to make bugs more obvious.Neil3-51/+51
Use noexcept, namespace, const, constexpr, and static inline where reasonable. Avoid warnings in initializations.
2020-03-19Use noexcept in EditModel.Neil2-6/+6
2020-03-19Minor improvements - noexcept, constexpr, cast removal.Neil2-11/+9
2020-03-19Feature [feature-requests:1302] Simplify DrawCarets.Zufu Liu1-5/+4
2020-03-19Feature [feature-requests:1302] Add IsCaretVisible to simplify DrawCarets.Zufu Liu3-1/+6
2020-03-17Remove CRITICAL_SECTION by creating reverse arrow cursor at initialization.Neil1-30/+17
InitializeCriticalSection inside DllMain can cause exceptions on old Windows.
2020-03-16Fail early if Python 3.x.Neil1-0/+3
2020-03-16List headers in HeaderOrder.txt that are not used.Neil2-5/+6
Remove unused headers from HeaderOrder.txt.
2020-03-16Update Scintilla.h to match reordering of Scintilla.iface.Neil1-9/+9
2020-03-15Bug [#2159]. SC_WRAP_CHAR is not supported for printing.Neil1-5/+4
2020-03-13Using constexpr in UniConversion and CaseConvert.Neil4-7/+7