aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
AgeCommit message (Collapse)AuthorFilesLines
2014-05-01Consolidate insertion for paste into Editor class and perform line endNeil1-2/+2
conversion in Editor.
2014-04-21View line state in margin with SC_FOLDFLAG_LINESTATE as an aid to debugging.Neil1-1/+9
2014-04-16Allow filtering of insertions.Neil1-22/+39
2014-04-10Link to tutorial by Andreas Tscharner.Neil Hodgson1-1/+3
2014-02-18Explain the Version method.Neil1-0/+3
2014-02-14Fix explanation as confused in bug [#1577].Neil1-1/+1
2014-02-05The Unicode line ends and substyles features added as provisional in 3.2.5 ↵Neil1-17/+6
are now finalised.
2014-02-02Added wrap mode SC_WRAP_WHITESPACE which only wraps on whitespace, not on ↵Neil1-5/+6
style changes. From Robert Gieseke.
2014-01-24Added image of available markers.Neil1-1/+3
2014-01-22Fixing tag mismatches.Neil1-23/+18
2014-01-22Clarify effects of setting additional selecton colours.Neil1-3/+10
2014-01-21Implement new marker symbol SC_MARK_BOOKMARK.Neil Hodgson1-14/+31
2014-01-14CallTipSetPosStart API added.Neil1-2/+4
2014-01-10Clarification of calltip behaviour.Neil1-3/+6
2013-12-17Added DropSelectionN API.Neil1-0/+7
2013-11-18Bug [#1552]. Search string could be const.Neil1-1/+1
2013-11-09Note limitation on Qt.Neil1-1/+3
2013-09-30Added specific type to make it easier to understand.nyamatongwe1-1/+1
2013-09-30Removed command: method from ScintillaNotificationProtocol as all events can ↵nyamatongwe1-2/+0
now be received through the notification: method.
2013-09-30Added FocusIn and FocusOut notification events (SCN_FOCUSIN/SCN_FOCUSOUT) to beNeil1-2/+11
used in preference to the SCEN_SETFOCUS and SCEN_KILLFOCUS command events.
2013-09-29Improved information about notifications, particularly on GTK+.Neil1-11/+16
2013-09-26Enhance stability by defining GetLineEndPosition for lines beyond end of ↵Neil1-3/+3
document to return document size.
2013-09-26Added image of indicators.Neil1-2/+4
2013-09-18Reimplement notifications from ScintillaCocoa to ScintillaView as a delegate ↵nyamatongwe1-3/+11
relationship using ScintillaNotificationProtocol. Add optional command:idFrom: method to ScintillaNotificationProtocol for command notifications. In a future version registerNotifyCallback: and ScintillaCocoa::RegisterNotifyCallback will be deprecated.
2013-09-07Mention that prefix keyword sets aren't implemented for SCI_SETIDENTIFIERS.Neil1-4/+5
2013-09-05Added SCI_GETPRIMARYSTYLEFROMSTYLE.Neil1-2/+7
2013-09-03Documentation for GetStyleFromSubStyle.Neil1-1/+6
2013-08-22Correct spelling and some out-of-date file and directory names.nyamatongwe1-25/+25
2013-08-20Added PositionRelative to optimize navigation by character.Neil1-0/+6
2013-08-15Feature: [feature-requests:#1007]. Option to allow mouse selection toNeil1-1/+13
switch to rectangular by pressing Alt after start of gesture. From Neomi.
2013-07-22Added the character representation feature.Neil1-29/+83
2013-07-06Mention OS X.Neil1-0/+3
2013-07-03Removed out-of-date text.Neil1-3/+1
2013-06-29Bug: [#1483]. Split GetRelativePosition into 2 calls one for moving between ↵Neil1-5/+10
character positions and the other for retrieving a character and width.
2013-06-27Bug: [#1483]. Adding StyleContext::GetRelativeCharacter for ↵nyamatongwe1-1/+6
character-oriented access. Implemented using new method IDocumentWithLineEnd::GetRelativePosition.
2013-05-05Removing support for Visual C++ 2005 and 6.0.nyamatongwe1-5/+4
2013-04-24Cosmetic: remove line-end whitespace.nyamatongwe1-37/+37
2013-04-24Added automatic folding options.nyamatongwe1-1/+49
2013-04-21Implement commonly needed folding methods based on code from SciTE.nyamatongwe1-0/+54
2013-04-16Add indicator INDIC_COMPOSITIONTHICK, a thick low underline, to mimic annyamatongwe1-0/+10
appearance used for Asian language input composition.
2013-04-06Removed references to Carbon platform which is no longer supported.nyamatongwe1-4/+2
2013-04-01Feature [#981]. Added autocompletion order property to allow list to be orderednyamatongwe1-2/+21
according to container preference but still allowing selection by typing. From Alpha.
2013-03-20Add ScrollRange feature.nyamatongwe1-0/+9
2013-02-26Spelling.nyamatongwe1-1/+1
2013-02-22Define the maximum number of margins in Scintilla.iface.nyamatongwe1-1/+2
2013-02-05Add allocation of extended styles.nyamatongwe1-0/+22
2013-01-19Implement provisional category and place Unicode line ends and substyles ↵nyamatongwe1-7/+37
into it.
2013-01-19Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document,nyamatongwe1-0/+14
Editor and the message interface. Will only be turned on for lexers that support Unicode line ends.
2013-01-19Implement APIs for Unicode line ends and substyles and expose tonyamatongwe1-4/+58
message interface. Expose IDocumentWithLineEnd interface on Document.
2013-01-19Add methods for Unicode line ends and substyles to IDocument and ILexernyamatongwe1-2/+38
producing IDocumentWithLineEnd and ILexerWithSubStyles.