Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-07-11 | Include case conversion data in Scintilla so that all platforms will perform | Neil | 1 | -0/+1 | |
case conversion of Unicode text in accordance with Unicode. | |||||
2013-07-11 | Allow Editor subclasses to turn off overstrike caret. | Neil | 1 | -1/+2 | |
From Mitchell Foral. | |||||
2013-07-11 | Avoid warning for 64-bit build. | Neil | 1 | -1/+1 | |
2013-07-07 | When case conversion changes the length of the text, ensure only | Neil | 1 | -6/+16 | |
valid memory accessed and that the converted text is selected. | |||||
2013-07-03 | Ensure style data initialised before drawing margin. | nyamatongwe | 1 | -0/+2 | |
2013-06-18 | Simplify line wrapping code, minimize lines wrapped and avoid rewrapping lines. | nyamatongwe | 1 | -109/+77 | |
2013-06-18 | Determine more accurately whether painting was abandoned by styling and so | nyamatongwe | 1 | -1/+3 | |
decrease consequent line wrapping work. | |||||
2013-06-17 | Fix wrap width so doesn't take account of margin twice. | nyamatongwe | 1 | -1/+1 | |
2013-06-11 | Fix a bug with word wrap where the last line could be shown twice. | nyamatongwe | 1 | -0/+2 | |
2013-05-26 | Switch SelectionText to use a std::string to hold the data and to provide ↵ | nyamatongwe | 1 | -22/+26 | |
accessors to this data. Add a length argument to DropAt, although previous signature still available. | |||||
2013-05-25 | Simplify copying text since it is now using a std::string so no need to | Neil Hodgson | 1 | -29/+12 | |
pre-allocate. | |||||
2013-05-24 | Made methods const where they can be and are logically const as well. | nyamatongwe | 1 | -12/+12 | |
2013-05-23 | Bug: [#1478]. Tab/backTab in column select requires one undo per line. | nyamatongwe | 1 | -6/+2 | |
From Eric Promislow at ActiveState. | |||||
2013-05-19 | Don't dereference character string when length is 0. May be a NULL pointer | nyamatongwe | 1 | -1/+1 | |
and cause a crash and shouldn't read beyond length anyway. | |||||
2013-05-17 | Fix fold all to show lines instead of going past end which then failed. | nyamatongwe | 1 | -1/+1 | |
2013-05-07 | Replace X.data() with &X[0] to allow building with old releases of Visual C++. | nyamatongwe | 1 | -1/+1 | |
2013-05-05 | Since new throws an exception on failure, remove testing of result. | nyamatongwe | 1 | -8/+4 | |
2013-05-04 | Replacing raw pointers and allocations with std::string. | nyamatongwe | 1 | -44/+18 | |
2013-05-02 | Replacing raw pointers and allocations with std::vector and std::map. | nyamatongwe | 1 | -2/+2 | |
2013-04-26 | Bug: [#1467]. Don't change scroll position when window is zero size. | nyamatongwe | 1 | -0/+3 | |
2013-04-24 | Cosmetic: remove line-end whitespace. | nyamatongwe | 1 | -17/+17 | |
2013-04-24 | Added automatic folding options. | nyamatongwe | 1 | -4/+81 | |
2013-04-21 | Implement commonly needed folding methods based on code from SciTE. | nyamatongwe | 1 | -25/+106 | |
2013-04-02 | Fix automatic scrolling on Cocoa. | nyamatongwe | 1 | -0/+2 | |
2013-03-20 | Add ScrollRange feature. | nyamatongwe | 1 | -10/+48 | |
2013-03-18 | Bug: [#1455]. Fix unfolding when new line inserted. | nyamatongwe | 1 | -0/+5 | |
2013-03-16 | Fix margin drawing with Cocoa when always-visible scrollbars turned on. | nyamatongwe | 1 | -1/+3 | |
2013-03-16 | Bug: [#1453]. Make subsequent tab markers visible on GTK+. | nyamatongwe | 1 | -6/+3 | |
Patch from Mark Yen at ActiveState with code simplified by Neil. | |||||
2013-03-15 | Use an NSScrollView on Cocoa for kinetic scrolling and hiding scrollbars ↵ | nyamatongwe | 1 | -51/+124 | |
unless wanted. Also affects platform-independent code. | |||||
2013-03-15 | Simplify calculation of visible line for point. | nyamatongwe | 1 | -4/+2 | |
2013-03-13 | Implement high-priority idle work on Cocoa to avoid abandoning paints in ↵ | nyamatongwe | 1 | -1/+1 | |
some situations. Rename IdleStyling to IdleWork. | |||||
2013-03-13 | Add different types of task to StyleNeeded mechanism, renaming to WorkNeeded. | Unknown | 1 | -11/+10 | |
Ask to perform update UI work for some selection moves. | |||||
2013-03-13 | Handle test and reset of needUpdateUI in NotifyUpdateUI so less chance of ↵ | Unknown | 1 | -13/+12 | |
desync. | |||||
2013-02-25 | Editor: SCI_LINESCROLL: treat columns as signed | Mook | 1 | -1/+1 | |
2013-02-22 | Define the maximum number of margins in Scintilla.iface. | nyamatongwe | 1 | -5/+5 | |
2013-02-18 | Don't draw line numbers before start of document. | nyamatongwe | 1 | -2/+3 | |
For elastic over-shoot scrolling, Scintilla was drawing lines with 0, -1, ... in the margin. | |||||
2013-02-18 | Bug: [#1446]. Display thumb at correct position when SetVScrollBar(true) called. | nyamatongwe | 1 | -0/+2 | |
2013-02-05 | Add allocation of extended styles. | nyamatongwe | 1 | -0/+9 | |
2013-01-19 | Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document, | nyamatongwe | 1 | -0/+18 | |
Editor and the message interface. Will only be turned on for lexers that support Unicode line ends. | |||||
2013-01-19 | To allow for new line end sequences implement IsPositionInLineEnd on the | nyamatongwe | 1 | -6/+14 | |
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-06 | Bug #1430. Fix crash when printing line longer than 8000 characters. | nyamatongwe | 1 | -1/+1 | |
2013-01-03 | Fix behaviour of the left and right keys after ↵ | nyamatongwe | 1 | -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-01 | Feature #3592730. Option for caret line to be visible without focus. | nyamatongwe | 1 | -2/+10 | |
From Vidya Wasi. | |||||
2012-09-19 | Allow subclasses to modify padding when last segment on line is italics. | nyamatongwe | 1 | -1/+2 | |
Used by ncurses platform layer. From Mitchell Foral. | |||||
2012-09-05 | Fix crashes on Ubuntu with GTK+3 where scroll bar changes invalidate the | nyamatongwe | 1 | -0/+2 | |
drawing surface. | |||||
2012-09-04 | Cache the CaseFolder object between FindText calls so that finding many ↵ | nyamatongwe | 1 | -26/+14 | |
instances of a common string in the document doesn't spend excessive time constructing case folder objects. | |||||
2012-08-26 | Add SCI_VCHOMEDISPLAYEXTEND keyboard command | Colomban Wendling | 1 | -0/+12 | |
This is like SCI_VCHOMEDISPLAY but extending the selection. | |||||
2012-08-25 | Add SCI_VCHOMEDISPLAY keyboard command | Colomban Wendling | 1 | -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-07-24 | Add ncurses platform. Rest of the implementation is an external project. | nyamatongwe | 1 | -3/+5 | |
From Mitchell Foral. | |||||
2012-07-21 | Scale factor implemented for RGBAImages to allow for high definition markers ↵ | nyamatongwe | 1 | -1/+6 | |
on retina displays. |