aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaHistory.html
AgeCommit message (Collapse)AuthorFilesLines
2017-07-12Backport: Bug [#1957]. Add focusChanged(bool focused) signal.Justin Dailey1-0/+4
Backport of changeset 6342:216bf96995c8.
2017-07-09Backport: Bug [#1955]. The data parameter to ILoader::AddData made const.Justin Dailey1-0/+4
Backport of changeset 6340:52f12c3eebcd.
2017-07-07Backport: Bug [#1949]. Fix drawing failure in wrap mode for GTK+ 2.x.Neil1-0/+1
Backport of changeset 6338:ebec660dcf48.
2017-07-07Backport: Redraw when overtype changed so caret change visible even when not ↵Justin Dailey1-0/+5
blinking. Notify application with SC_UPDATE_SELECTION when overtype changed - previously sent SC_UPDATE_CONTENT. Backport of changeset 6337:79f86be9e988.
2017-07-04Backport: Dropping files fires the SCN_URIDROPPED notification instead of ↵Justin Dailey1-0/+4
inserting text. Backport of changeset 6334:5ca0ae5097a1.
2017-06-29Backport: Bug [#1951]. matlab lexer - dont use 'end' as a keyword when used ↵John Donoghue1-0/+5
as a index. (ColouriseMatlabOctaveDoc) - set end as a number if within brackets ()[]{} that would allow end as an index rather than a keyword. Backport of changeset 6332:15f61ea20276.
2017-07-01Backport: Include the 'updated' flags in the updateUi signal.Justin Dailey1-1/+6
Don't send updateUi for focus in. Backport of changeset 6331:47a4b85d2fa8.
2017-06-19Backport: The default encoding is now UTF-8.Neil1-0/+3
Backport of changeset 6320:8d56eaef4f0a.
2017-06-13Backport: Bug [#1949]. Fix drawing failure in wrap mode for delete to ↵Neil1-0/+5
start/end of line. Backport of changeset 6313:82cb780a04d1.
2017-06-11Backport: Implement SCN_AUTOCSELECTIONCHANGE notification.Neil1-0/+3
Backported from changeset 6306:7e28cdba6d61.
2017-06-07Backport: Bug [#1919]. Rust - Update integer suffixes.Pavel Sountsov1-0/+4
Backport of changeset 6302:0577ec50750e.
2017-06-10Backport: Bug [#1947]. Reenable mouse tracking when the window is reshown.Baldur Karlsson1-0/+5
Backport of changeset 6300:d0038cc1af23.
2018-03-13Prepare changelog for 3.x.mitchell1-0/+11
2017-05-23Standardize spelling.Neil Hodgson1-81/+81
2017-05-23Updated for 3.7.5 release.Neil1-2/+5
2017-05-18Handle Hex & Exp representations properly. Octal representation not ↵oirfeodent1-0/+4
available in BaanC. Undo auto indentation by editor. Add + as well similar to -. V3. Replace ascii value of e & x to actual value.
2017-05-22Bug [#1946]. Builds are made with a sorted list of lexers to be more ↵Bernhard M. Wiedemann1-0/+5
reproducible.
2017-05-10Feature [feature-requests:#1187]. Update scroll bar when annotations added,Neil1-0/+4
removed, or visibility changed.
2017-05-08SciTE change log.Neil1-0/+3
2017-05-08Bug [#1944]. Recognize strings in lists in more cases.Kein-Hong Man1-0/+4
2017-05-06SciTE change log.Neil1-0/+4
2017-04-25Bug [#1940]. Canceling modes with the Esc key preserves a rectangular selection.Neil1-0/+4
2017-04-22Fix a leak of mouse tracking areas.Neil Hodgson1-0/+3
2017-04-21Treat comments at the end of the file as separate from the preceding structure.Neil1-0/+3
2017-04-18Bug [#1936]. Implement comment folding.darmar1-0/+4
2017-04-18Bug [#1935]. Recognize a preprocessor line after a line continuation.darmar1-0/+4
2017-04-11Credit.Neil1-0/+1
2017-04-10Bug [#1931]. Recognize comments in more situations and treat "..." like "---".Jim Pattee1-0/+5
2017-04-08SciTE change log.Neil1-0/+3
2017-04-06Added a caret line frame as an alternative visual for highlighting the caret ↵A-R-C-A1-0/+3
line.
2017-04-06SciTE change log.Neil1-0/+4
2017-04-05Change log.Neil1-0/+4
2017-04-02Added "Reverse Selected Lines" as SCI_LINEREVERSE.Vicente1-0/+3
2017-03-30SciTE change log.Neil1-0/+4
2017-03-30Stop drawing a focus rectangle on the autocompletion list.Neil1-0/+4
Raise the default list length to 9 items.
2017-03-30Make autocompletion slightly wider to avoid text truncation.Neil Hodgson1-0/+3
2017-03-25SciTE change log.Neil1-0/+3
2017-03-23The Python lexer recognizes identifiers more accurately when they includeNeil1-0/+3
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.Neil1-0/+11
2017-03-21Document C++11 requirement.Neil1-0/+3
2017-03-19Update for 3.7.4 release.Neil1-1/+1
2017-03-19Change log for the recent fold tag drawing fixes.Neil1-0/+4
2017-03-16Fix use-after-free in fold tags when top line folded then new top line inserted.Neil1-0/+3
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.Neil1-0/+4
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 areNeil1-0/+3
only available from Windows 2000 and later.
2017-03-08SciTE change log.Neil1-0/+4
2017-03-08Improve f-string support.John Ehresman1-0/+8
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-07Bug [#1910]. Accessibility support may be queried and, on GTK+, disabled.Neil1-0/+4