aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2017-04-02Added "Reverse Selected Lines" as SCI_LINEREVERSE.Vicente6-1/+43
2017-04-01Fix DisplayFromPosition pos argument to be correct type.Neil2-2/+2
2017-04-01More encapsulation for Decoration and DecorationList.Neil5-39/+56
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil52-184/+162
where it may be needed in the future.
2017-03-31Prefer standard min/max over Platform's as adapts to changed types.Neil6-32/+33
2017-03-31Hide decorations details a little.Neil7-8/+10
2017-03-31Delete declaration of unimplemented method.Neil1-1/+0
2017-03-31Using Sci::Position and Sci::Line to mark variables that are document positionsNeil39-1327/+1322
and lines.
2017-03-30SciTE change log.Neil1-0/+4
2017-03-30Stop drawing a focus rectangle on the autocompletion list.Neil2-4/+5
Raise the default list length to 9 items.
2017-03-30Make autocompletion slightly wider to avoid text truncation.Neil Hodgson2-1/+5
2017-03-28Fix Xcode warning.Neil Hodgson1-1/+1
2017-03-27Keep positions in Sci_Position variables so can adapt to changes.Neil1-3/+3
2017-03-25SciTE change log.Neil1-0/+3
2017-03-23The Python lexer recognizes identifiers more accurately when they includeNeil4-10/+159
non-ASCII characters. Calls provided for determining whether characters are in the sets defined for identifiers by the Unicode standard in UAX #31.
2017-03-23Updated case conversion and character categories to Unicode 9.Neil3-113/+725
2017-03-21Added tag rel-3-7-4 for changeset ddcae5344fa5Neil1-0/+2
2017-03-21Removed tag rel-3-7-4rel-3-7-4Neil1-0/+2
2017-03-21Document C++11 requirement.Neil4-10/+12
2017-03-21Added tag rel-3-7-4 for changeset 535c34f64993Neil1-0/+1
2017-03-19Update for 3.7.4 release.Neil8-16/+18
2017-03-19Change log for the recent fold tag drawing fixes.Neil1-0/+4
2017-03-19Group non-single-phase drawing before text.Neil1-11/+11
2017-03-16For single phase drawing ensure remainder of line filled by always fillingNeil1-1/+1
in tag fold drawing.
2017-03-16For single phase drawing ensure edges and mark underline drawn over fold tags byNeil1-5/+8
moving drawing of edge line and mark underline after fold tags.
2017-03-16For multiphase drawing ensure edges and mark underline drawn over fold tags byNeil1-0/+2
moving background drawing of fold tags before edge line and mark underline.
2017-03-17Round left and right sides of fold text box to ensure within the allocation.Neil1-8/+11
2017-03-16Fix 1 pixel unpainted as background.Neil1-1/+1
2017-03-16Fix difference between right of line end and left of fold tag.Neil1-1/+1
2017-03-16Fix use-after-free in fold tags when top line folded then new top line inserted.Neil3-1/+17
In SparseVector, string inserted at start then NULL inserted at start.
2017-03-11SciTE change log.Neil1-1/+5
2017-03-11SciTE change log.Neil1-0/+4
2017-03-10Bug [#1653]. Detect if Windows 8+ or KB2533623 installed before using flag.Neil2-5/+21
LOAD_LIBRARY_SEARCH_SYSTEM32 causes failure of Direct2D on original Windows 7 so check for availability before using.
2017-03-09Drop support for Windows NT 4 by statically linking to system APIs that areNeil6-88/+20
only available from Windows 2000 and later.
2017-03-10Bug [#1918]. Fix failure when lexing starts at line 3+ of a multiline f-string.John Ehresman1-1/+2
2017-03-08Fix memory leak.Neil Hodgson1-5/+8
2017-03-08Fix warnings from Visual Studio 2017.Neil2-4/+4
2017-03-08SciTE change log.Neil1-0/+4
2017-03-08Standardised formatting by running astyle as formatting had become inconsistent.Neil1-49/+45
2017-03-08Improve f-string support.John Ehresman2-32/+153
Add support for multiline expressions in triple quoted f-strings. Handle nested "()", "[]", and "{}" in f-string expressions and terminate expression coloring at ":" or "!". End f-string if ending quote is seen in a "{}" expression. Fix terminating single quoted f-string at EOL.
2017-03-07GTK: Fix popup positioning on monitors not positioned at 0,0Colomban Wendling1-20/+14
2017-03-08Bug [#1910]. Fixed more duplicate code.Neil1-7/+0
2017-03-07Bug [#1910]. Fixed double declaration.Neil1-3/+0
2017-03-07Bug [#1910]. Accessibility support may be queried and, on GTK+, disabled.Neil10-13/+129
2017-03-07Avoid potential problems with memcmp reading past end of object.Neil2-3/+8
2017-03-07Handle nested comments for adjacent markers like "/*/*" or "*/*/".Matt Gilarde2-1/+10
2017-03-06Use several C++11 features as examples so problems with these features are seen.Vicente15-28/+41
Features used are move constructor, unique_ptr, deleted functions, enum class, lambda expression, and range for loop.
2017-03-06New "indent" lexer styled as plain text but folded by indentation level.Vicente7-0/+86
2017-03-06Fold a VHDL "entity" on the first line of the file.Vicente2-3/+8
2017-03-05For IMEs, do not clear selected text when there is no composition text to show.johnsonj4-3/+15