aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2017-04-07Use same parameter names in declarations and definitions.Neil10-20/+20
2017-04-07Check index before checking value at index.Neil1-2/+2
2017-04-06Added const where possible.Neil25-252/+252
2017-04-06Added a caret line frame as an alternative visual for highlighting the caret ↵A-R-C-A4-9/+84
line.
2017-04-03Prevent warning from MSVC Code Analysis.Neil1-4/+6
2017-04-02Added "Reverse Selected Lines" as SCI_LINEREVERSE.Vicente2-0/+32
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>Neil25-84/+82
where it may be needed in the future.
2017-03-31Prefer standard min/max over Platform's as adapts to changed types.Neil5-31/+32
2017-03-31Hide decorations details a little.Neil3-4/+6
2017-03-31Delete declaration of unimplemented method.Neil1-1/+0
2017-03-31Using Sci::Position and Sci::Line to mark variables that are document positionsNeil29-1205/+1200
and lines.
2017-03-23Updated case conversion and character categories to Unicode 9.Neil1-3/+199
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.Neil1-1/+2
In SparseVector, string inserted at start then NULL inserted at start.
2017-03-08Fix warnings from Visual Studio 2017.Neil2-4/+4
2017-03-07Bug [#1910]. Accessibility support may be queried and, on GTK+, disabled.Neil1-0/+7
2017-03-07Avoid potential problems with memcmp reading past end of object.Neil1-2/+6
2017-03-06Use several C++11 features as examples so problems with these features are seen.Vicente7-27/+26
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.Vicente1-0/+1
2017-03-04Use "override" for Cocoa platform code and add to Editor where possible.Neil Hodgson1-16/+16
2017-03-04Use C++11 keyword "override" for methods that override a base class.Neil4-9/+9
2017-03-02Fix potential problems with IME on Cocoa when document contains invalid UTF-8.Neil2-0/+24
2017-02-23Bug [#1905]. Fix stream selection mode when moving caret up or down.Neil1-0/+3
2017-02-02Using better checked static_cast instead of reinterpret_cast for void*.Neil Hodgson1-1/+1
2017-01-22Display block caret over the character at the end of a selection to be similarJohn Ehresman1-1/+7
to other editors.
2017-01-22Remove extraneous "void".Neil2-2/+2
2017-01-19Bug [#1896]. Avoid unnecessary unfolding when a deletion does not include a lineNeil1-2/+2
end.
2017-01-19Bug [#1896]. Ensure folding consistent when fold header added above folded part.Neil1-1/+1
2017-01-04Mark some const methods as const.Neil4-4/+4
2016-12-09Warning suppression and documentation of previous change 6082.Neil1-1/+2
2016-12-09Use double coordinates instead of float in some cases as float ran out ofNeil5-7/+24
precision in long documents. This meant that individual lines could not be selected by mouse when the document exceeded 16.7 million lines.
2016-06-17Bug [#1888]. Only invalidate selection when using SCI_SETSELECTIONN api'sJohn Ehresman2-32/+40
2016-11-23Implementation of MarginRightClick event.Tse Kit Yam4-3/+38
2016-11-29Textual tags may be displayed on folded lines with SCI_TOGGLEFOLDSHOWTEXT.Tse Kit Yam7-16/+179
2016-11-25Feature [feature-requests:#1166]. EDIFACT lexer and folder added.Iain Clarke1-0/+1
2016-11-16Removed elements that have been deprecated for more than 5 years.Neil1-9/+0
2016-11-16Deprecate non-branded struct names in Scintilla.h.Neil1-1/+1
2016-11-15Remove declaration of methods that were moved to Document in change set 2867.Neil1-16/+0
2016-11-14Added alternate appearance for visible tabs which looks like a horizontal line.jedailey4-11/+28
2016-11-07Specify 'noexcept' to use Clang with GNU <regex>.Neil1-2/+10
Since 'noexcept' is not available with all compilers, restrict it to cases where needed.
2016-11-05Add options to choose between the locations of a position when thereNeil Hodgson6-17/+72
are multiple locations for one position. The main current use is to find the location at the end of a line or display line when the commonly used location is at the start of the next line.
2016-10-30Add header needed for std::string.Neil Hodgson1-0/+1