aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2016-10-06Word selection, navigation, and manipulation is now performed on charactersNeil3-144/+379
2016-09-30Enable SplitVector to store objects by using std::copy to copy elements insteadNeil1-10/+12
2016-09-29The number of margins can be changed with SCI_SETMARGINS.Neil6-13/+21
2016-09-29Margin type SC_MARGIN_COLOUR and API SCI_SETMARGINBACKN added.Neil3-0/+17
2016-09-27On Win32, mouse wheel scrolling can be restricted to only occur when the mouseStefan Küng2-0/+9
2016-09-23EDGE_MULTILINE and SCI_MULTIEDGEADDLINE added to allow displaying multipleA-R-C-A4-18/+59
2016-09-18Fix spelling in comment.Neil1-1/+1
2016-09-18Bug [#1861]. Fix caret position from left/right move with rectangular selection.Neil1-6/+6
2016-09-14Casts for 64 to 32-bit conversions on OS X.Neil Hodgson1-2/+2
2016-08-31Bug [#1850]. Use tabs for virtual space in indentation when tabs enabled.jedailey3-17/+28
2016-08-20Make some methods const where reasonable.Neil4-4/+4
2016-08-20Bug [#1648]: Option added to prevent left arrow movement and selection wrappingNeil1-2/+2
2016-08-15Bug [#1842]. Fix fold expand when some child text not styled.Neil1-0/+3
2016-08-12Remove tests that are not needed.Neil1-2/+2
2016-05-14Post a caret moved accessibility event in Editor::MovedCaret so that screenNeil2-0/+5
2016-05-11Bug [#1827]. GTK: Avoid possible IdleWork() calls on destructed objectsColomban Wendling1-3/+1
2016-05-03Avoid use of const_cast when retrieving window positions.Neil1-1/+1
2016-04-28C++ 11 <regex> support built by default.Neil1-3/+3
2016-04-21Correct comments.Neil1-1/+1
2016-03-29Feature [feature-requests:#1142]. Allow Super modifier on GTK+.Neil3-3/+5
2016-03-29Bug [#1822]. Doubled size of compiled regex buffer.Neil1-1/+1
2016-03-26Fix truncation warning in 64-bit build.Neil1-2/+2
2016-03-25Define Position and invalidPosition inside the Sci namespace for internal use.Neil1-4/+11
2016-03-20Feature [feature-requests:#1140]. JSON lexer added.nkmathew1-0/+1
2016-01-31Replace expressions to find level number of a fold level with function call.Neil4-27/+27
2016-01-31Bug [#1799]. Folds unfolded when two fold regions are merged by either deletingMarkus Nißl2-0/+21
2016-01-10Use value initialization in preference to memset as simpler and more robust.Neil1-2/+1
2016-01-08Bug [#1801]. Fix spelling.Bewied1-2/+2
2016-01-05Fix infinite loop with both wrap and idle styling to end turned on.Neil1-8/+4
2015-12-31Bug [#1796]. Expand folded areas before deleting fold header line.Neil1-8/+15
2015-12-31Treat Unicode line ends like common line ends when maintaining fold state.Neil4-5/+22
2015-12-07Prefer StyleIndexAt over StyleAt to avoid problems with out-of-bounds access forNeil3-9/+9
2015-12-04Fix some problems with out-of-bounds access for protected text.Neil2-4/+5
2015-12-04Bug [#1784]. Highlight whole run for hover indicator when wrapped.Neil2-8/+4
2015-12-01Undo virtual spaces in one step at start of IME composition.Neil1-0/+2
2015-11-20Remove line end whitespace.Neil7-19/+19
2015-11-20Bug [#1779]. Better Unicode input support on Windows systems.Sam Hocevar2-4/+4
2015-11-15Send SCN_UPDATEUI with SC_UPDATE_SELECTION when application changes multipleJohn Ehresman1-0/+10
2015-11-11Implemented idle styling. This allows painting without first styling all visibleNeil4-5/+111
2015-10-25Fix line end movement on display lines when EOLs are visibleColomban Wendling1-2/+4
2015-10-19Bug [#1768]. Report error when negative length passed to SCI_SETSTYLING.Neil1-1/+4
2015-10-12Implement Swap in SelectionRange to avoid warnings.Neil3-1/+6
2015-09-29Mark local functions as static.Neil Hodgson3-5/+5
2015-09-26Centre whitespace dot when dot is larger than 1 pixel.Neil1-1/+2
2015-09-26Indentation guides do not affect background drawing so omit from condition.Neil1-2/+1
2015-09-26Add parentheses to fix warning from Clang.Neil Hodgson1-2/+2
2015-09-26Whitespace may be made visible just in indentation.nkmathew3-11/+15
2015-09-23When SC_MARK_UNDERLINE if not assigned to a margin, stop drawing the whole line.Neil4-34/+50
2015-09-23Optimise drawing by only drawing affected lines when markers shown in the text.Neil1-36/+40
2015-09-04Change FillVirtualSpace to ClearBeforeTentativeStart and delete selected text.johnsonj2-3/+12