aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2013-03-13Handle test and reset of needUpdateUI in NotifyUpdateUI so less chance of ↵nyamatongwe2-14/+13
desync.
2013-02-25Editor: SCI_LINESCROLL: treat columns as signedMook1-1/+1
2013-02-28Return last display line for document lines beyond document end.nyamatongwe1-1/+1
2013-02-22Define the maximum number of margins in Scintilla.iface.nyamatongwe3-11/+10
2013-02-18Don't draw line numbers before start of document.nyamatongwe1-2/+3
For elastic over-shoot scrolling, Scintilla was drawing lines with 0, -1, ... in the margin.
2013-02-18Fix drawing of markers at negative coordinates due to integer truncation.nyamatongwe1-2/+3
For elastic over-shoot scrolling, Scintilla may draw lines before 0 so draws markers at negative coordinates. Normal float->int coercion uses truncation so that markers will be drawn a pixel away from where they should be for consistent placement within the marker space. If scrolling causes drawing in slices, a line may be drawn twice.
2013-02-18Bug: [#1446]. Display thumb at correct position when SetVScrollBar(true) called.nyamatongwe1-0/+2
2013-02-05Add allocation of extended styles.nyamatongwe3-1/+24
2013-01-30Added assert to silence Xcode analyse warning.nyamatongwe1-0/+2
2013-01-26Fixed unused value warning.nyamatongwe1-2/+1
2013-01-19Add private copy constructors to prevent copying and avoid warnings.nyamatongwe4-0/+11
2013-01-19Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document,nyamatongwe6-8/+181
Editor and the message interface. Will only be turned on for lexers that support Unicode line ends.
2013-01-19To allow for new line end sequences implement IsPositionInLineEnd on thenyamatongwe3-6/+19
document and use it instead of checks for particular byte values. Use equivalent checks against numCharsBeforeEOL in other contexts. When line ends visible, display byte value blobs for non-ASCII line ends.
2013-01-19Implement APIs for Unicode line ends and substyles and expose tonyamatongwe3-5/+118
message interface. Expose IDocumentWithLineEnd interface on Document.
2013-01-08Bug: [#1289]. Replace null characters by spaces in the clipboard to avoid thatVivian De Smedt1-0/+13
its content is truncated in the paste operation.
2013-01-06Bug #1430. Fix crash when printing line longer than 8000 characters.nyamatongwe1-1/+1
2013-01-03Fix behaviour of the left and right keys after ↵nyamatongwe1-0/+4
SCI_SETSELECTIONMODE(SC_SEL_STREAM) where moving both left and right collapsed the selection instead of shrinking the selection by one character.
2013-01-01Feature #3592730. Option for caret line to be visible without focus.nyamatongwe3-2/+13
From Vidya Wasi.
2012-11-10Group undo actions in autocompleteJakub Vrana1-0/+1
2012-10-04Fix bug where non-ASCII hex escape did not match.nyamatongwe1-1/+1
2012-09-19Allow subclasses to modify padding when last segment on line is italics.nyamatongwe2-1/+3
Used by ncurses platform layer. From Mitchell Foral.
2012-09-13Move PO lexer out of LexOthersColomban Wendling1-1/+1
2012-09-12Fix bug where removing all characters from indicator at end of document didnyamatongwe1-0/+1
not remove that run causing iteration over the indicator to hang.
2012-09-05Fix crashes on Ubuntu with GTK+3 where scroll bar changes invalidate thenyamatongwe1-0/+2
drawing surface.
2012-09-04Cache the CaseFolder object between FindText calls so that finding many ↵nyamatongwe3-28/+42
instances of a common string in the document doesn't spend excessive time constructing case folder objects.
2012-08-26Add SCI_VCHOMEDISPLAYEXTEND keyboard commandColomban Wendling1-0/+12
This is like SCI_VCHOMEDISPLAY but extending the selection.
2012-08-25Add SCI_VCHOMEDISPLAY keyboard commandColomban Wendling1-0/+12
This works like SCI_HOMEDISPLAY but goes to the first visible character if on a logical line, like does SCI_VCHOME. This command makes it possible to use display-line-aware commands while keeping the "smart home" feature.
2012-08-05Avoid poor drawing at right of INDIC_SQUIGGLE.nyamatongwe1-7/+13
2012-08-05Align INDIC_DOTBOX to pixel grid for full intensity.nyamatongwe1-3/+2
2012-08-05Add INDIC_SQUIGGLEPIXMAP as a faster version of INDIC_SQUIGGLE.nyamatongwe1-0/+24
Based on work by Matthew Brush and Lex Trottman.
2012-07-24Add ncurses platform. Rest of the implementation is an external project.nyamatongwe7-13/+29
From Mitchell Foral.
2012-07-21Scale factor implemented for RGBAImages to allow for high definition markers ↵nyamatongwe7-12/+23
on retina displays.
2012-07-21Avoid problems when calltip highlight range is negative. Bug #3545938.nyamatongwe1-1/+1
2012-07-18strncat was being used with incorrect length argument. Result is alwaysnyamatongwe1-3/+3
safely limited so use strcat instead.
2012-07-17Avoid loss of precision warnings from Borland.nyamatongwe1-4/+4
2012-07-16Implement SCI_GETSELECTIONEMPTY API. Bug #3543121.nyamatongwe1-0/+3
2012-07-16Send SCN_UPDATEUI with SC_UPDATE_SELECTION for backspace in virtual space. ↵nyamatongwe1-0/+1
Bug #3543121.
2012-07-16Fix rectangular selection range after backspace. Bug #3543097.nyamatongwe1-0/+1
2012-07-11Fix margin click so clicking on first pixel of margin causes a notification.nyamatongwe1-1/+1
From John Vella.
2012-07-02When line starts with 0 width character, do not allow end of previous linenyamatongwe1-0/+2
to be part of block caret range.
2012-06-27Fix screen redraw issues introduced with change set 4199.Marko Njezic1-6/+7
2012-07-02Remove functions provided by headers.nyamatongwe1-9/+0
2012-07-02Make IsLowerCase and IsUpperCase not depend on non-portable isascii, takenyamatongwe1-8/+0
an int argument to match similar calls, and move to header for wider use.
2012-07-02Reduce scope of variable.nyamatongwe1-1/+1
2012-07-01Fix hang when Zero Width Space U+200B occurs at start of document.nyamatongwe1-1/+1
2012-06-27Using the correct side margin for previous commit.nyamatongwe1-1/+1
2012-06-26Bugs #699587, #3537799. Allow text at start of line to overlap 1 pixelnyamatongwe1-3/+16
into the margin as this displays serifs and italic stems for aliased text.
2012-06-26Fixed incorrect comment.nyamatongwe1-1/+1
2012-06-18Removed unnecessary code after change for bug #3535806.nyamatongwe1-6/+1
2012-06-18Remove marker only once for SCI_MARKERDELETE. Bug #3535806.nyamatongwe2-4/+6