aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2017-04-15Fix deprecation of gdk_window_process_updates in GTK+ 3.22 by redrawing insteadNeil1-4/+6
of scrolling.
2017-04-15Use bool literals true and false instead of 1 and 0.Neil4-9/+9
2017-04-14Ensure capitalHeight initialised.Neil1-0/+1
2017-04-12For speed, store height of capital letters in FontMeasurements so notNeil3-2/+3
recalculated for every character blob.
2017-04-11Credit.Neil1-0/+1
2017-04-10Bug [#1931]. Recognize comments in more situations and treat "..." like "---".Jim Pattee2-1/+10
2017-04-09Further use of range-for.Neil10-87/+84
2017-04-09Modernise ViewStyle with vector, unique_ptr, any_of, and method deletion.Neil5-108/+93
2017-04-08SciTE change log.Neil1-0/+3
2017-04-08Use reference for efficiency.Neil1-1/+1
2017-04-07Prefer C++ static cast over C-style casts.Neil7-18/+19
2017-04-07Remove unnecessary casts.Neil1-2/+2
2017-04-07Drop "virtual" from methods that do not need to be virtual.Neil1-2/+2
2017-04-07Use same parameter names in declarations and definitions.Neil20-56/+56
2017-04-07Check index before checking value at index.Neil1-2/+2
2017-04-07Allowing assigning Windows and ensure cursorLast is initialized.Neil1-0/+8
2017-04-06Added const to some lexers.Neil6-61/+61
2017-04-06Added const where possible.Neil35-357/+357
2017-04-06Added a caret line frame as an alternative visual for highlighting the caret ↵A-R-C-A8-9/+103
line.
2017-04-06SciTE change log.Neil1-0/+4
2017-04-05Change log.Neil1-0/+4
2017-04-05Made formatting more consistent by running astyle.Neil1-6/+6
2017-04-05Bug [#1929]. Recognize escaped quotes within quotes.Jim Pattee1-0/+4
2017-04-03Fix test which was broken by encapsulation of revision 6195.Neil1-1/+1
2017-04-03Prevent warning from MSVC Code Analysis.Neil1-4/+6
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.