aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
AgeCommit message (Expand)AuthorFilesLines
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-14Added alternate appearance for visible tabs which looks like a horizontal line.jedailey1-0/+8
2016-11-05Add options to choose between the locations of a position when thereNeil Hodgson1-4/+10
2016-10-26Moved location to margin code from Editor to ViewStyle.Neil1-7/+1
2016-10-26Marked method const as it can be.Neil1-1/+1
2016-10-22Redraw previous selection when switching from rectangular selection to lineNeil1-0/+1
2016-10-19Margin click to select line now clears rectangular and additional selections.Neil1-0/+3
2016-09-29The number of margins can be changed with SCI_SETMARGINS.Neil1-5/+13
2016-09-29Margin type SC_MARGIN_COLOUR and API SCI_SETMARGINBACKN added.Neil1-0/+13
2016-09-27On Win32, mouse wheel scrolling can be restricted to only occur when the mouseStefan Küng1-0/+8
2016-09-23EDGE_MULTILINE and SCI_MULTIEDGEADDLINE added to allow displaying multipleA-R-C-A1-4/+14
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.jedailey1-15/+25
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-05-14Post a caret moved accessibility event in Editor::MovedCaret so that screenNeil1-0/+4
2016-05-03Avoid use of const_cast when retrieving window positions.Neil1-1/+1
2016-03-29Feature [feature-requests:#1142]. Allow Super modifier on GTK+.Neil1-2/+3
2016-01-31Replace expressions to find level number of a fold level with function call.Neil1-3/+3
2016-01-31Bug [#1799]. Folds unfolded when two fold regions are merged by either deletingMarkus Nißl1-0/+17
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.Neil1-5/+1
2015-12-07Prefer StyleIndexAt over StyleAt to avoid problems with out-of-bounds access forNeil1-4/+4
2015-12-04Fix some problems with out-of-bounds access for protected text.Neil1-4/+4
2015-12-04Bug [#1784]. Highlight whole run for hover indicator when wrapped.Neil1-4/+1
2015-12-01Undo virtual spaces in one step at start of IME composition.Neil1-0/+2
2015-11-20Remove line end whitespace.Neil1-5/+5
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 visibleNeil1-5/+75
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.Neil1-1/+1
2015-09-23When SC_MARK_UNDERLINE if not assigned to a margin, stop drawing the whole line.Neil1-1/+1
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.johnsonj1-2/+11
2015-08-24Simplify filling virtual space and avoid any side effects that may be caused byjohnsonj1-4/+9
2015-07-27Add Position.h as a place-holder and to allow #include "Position.h" in source.Neil1-0/+1
2015-06-25Fix regression due to recent multiple-selection changes with the selection notNeil Hodgson1-1/+1
2015-06-24Make multiple selection work over most cursor movement and selection, new line,Neil1-337/+536
2015-06-23Casts to silence warnings for 64-bit builds.Neil1-2/+2
2015-06-16Clean up some selection operations. Commonly when changing selection modes,Neil1-26/+26
2015-06-13Fix bug where maximum two selections possible at once with Ctrl+click dueNeil Hodgson1-6/+6
2015-06-11Added MultipleSelectAddNext, MultipleSelectAddEach, IsRangeWord, andNeil1-0/+75
2015-06-04Move FindText flag decoding from caller to function to minimize code and chanceNeil1-16/+0
2015-04-14Ensure SCI_TEXTHEIGHT uses valid style data and remove test pauses thatNeil1-0/+1
2015-04-10Avoid warning from clang analyze due to potential NULL pointer by assertingNeil Hodgson1-0/+1
2015-02-24Notify container of non-BMP characters correctly.Neil1-22/+3