Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-03-27 | Improve scrolling by performing styling in methods called before drawing ↵ | Neil Hodgson | 5 | -3/+104 | |
instead of inside drawing which then caused the drawing to be abandoned, and black blocks to appear on-screen. Discard responsive scrolling overdraw when that overdrawn content is invalid. Style just the visible area instead of the whole document when styling changes run beyond painting area. | |||||
2014-03-26 | Indentation use tab. | Neil Hodgson | 1 | -1/+1 | |
2014-03-26 | Fixed typo. | Neil Hodgson | 1 | -1/+1 | |
2014-03-26 | Change log. | Neil Hodgson | 1 | -0/+3 | |
2014-03-26 | Do not call AddCharUTF for empty insertions as may crash when autocompletion ↵ | Neil Hodgson | 1 | -4/+7 | |
active or cause other unexpected behaviour. | |||||
2014-03-26 | Refactor range deletion into a method on ScintillaView. | Neil Hodgson | 2 | -19/+19 | |
For removeMarkedText, use range deletion instead of setting the selection and inserting an empty string as this has fewer side effects and should avoid crashes when an autocompletion list is active. | |||||
2014-03-26 | Bug [#1588]. Round caret positions to the pixel grid instead of truncating. | Neil | 2 | -4/+13 | |
This may move the caret to the right 1 pixel in some situations. While sometimes this appears a little worse, on average it is slightly better than the precious code, with carets appearing inside the previous character less often. | |||||
2014-03-25 | Bug [#1587]. WM_LBUTTONDBLCLK was no longer sent to window. | Neil | 2 | -4/+8 | |
2014-03-25 | Bug [#1586]. Automatic indentation wrong when caret in virtual space. | Neil | 2 | -0/+5 | |
2014-03-25 | Bug [#1585]. Cursor down fails on wrapped lines. | Neil | 2 | -1/+14 | |
2014-03-23 | Remove method no longer needed. | Neil | 2 | -7/+0 | |
2014-03-22 | Added tag rel-3-4-0 for changeset eea0ac7e5c8f | Neil | 1 | -0/+1 | |
2014-03-20 | Minor updates for release 3.4.0. | Neil | 2 | -3/+3 | |
2014-03-18 | Extact credits from hsitory page with code. | Neil | 2 | -77/+109 | |
Normalize credit format. Make list same as one shown in about box. | |||||
2014-03-18 | Updated release blurb. | Neil | 1 | -0/+1 | |
2014-03-18 | Minor tweaks to avoid ststic checking warnings. | Neil | 4 | -8/+8 | |
2014-03-18 | Updating to get ready for 3.4.0. | Neil | 7 | -14/+14 | |
2014-03-17 | Avoid warning about excessive variable scope. | Neil | 2 | -3/+1 | |
2014-03-17 | Bug [#1583]. Fix styling 0...myArray.length all as a number. | Neil | 1 | -1/+1 | |
From Alpha. | |||||
2014-03-17 | Bug [#1583]. Fix keyword style extending past end of word. | Neil | 2 | -0/+12 | |
From Alpha. | |||||
2014-03-16 | Avoid warnings from Clang analyzer. | Neil | 1 | -1/+11 | |
2014-03-15 | Change log. | Neil | 1 | -0/+3 | |
2014-03-14 | Change log. | Neil | 1 | -0/+7 | |
2014-03-14 | Assembler lexer variant As(SCLEX_AS) for Unix assembly code which uses '#' | Neil | 5 | -4/+20 | |
for comments and ';' to separate statements. From nkmathew. | |||||
2014-03-13 | Put selected item at top of autocompletion list. | Neil | 1 | -0/+7 | |
2014-03-11 | Upgrade to Xcode 5.1. | Neil Hodgson | 1 | -1/+1 | |
2014-03-11 | Remove function no longer called. | Neil | 1 | -5/+0 | |
2014-02-26 | Refactor methods for converting screen points to and from document index, ↵ | Neil | 3 | -78/+80 | |
moving code from Editor to LineLayout. | |||||
2014-02-22 | Change log. | Neil Hodgson | 1 | -0/+4 | |
2014-02-22 | Stop adding an extra line to scrollable height as that led to cursor up/down | Neil Hodgson | 1 | -1/+1 | |
movement bugs because different parts of the code disagreed on top line. | |||||
2014-02-21 | Updated SciTE default settings. | Neil | 1 | -0/+4 | |
2014-02-21 | Moved change log entries which had been added to wrong release. | Neil | 1 | -6/+6 | |
2014-02-21 | Bug [#1577]. Deleting a whole line deletes the annotations on that line instead | Neil | 2 | -3/+7 | |
of the annotations on the next line. | |||||
2014-02-20 | Change log. | Neil | 1 | -0/+6 | |
2014-02-20 | Check that argument is of correct type. | Neil Hodgson | 1 | -0/+1 | |
2014-02-20 | When window is offscreen, use the main screen for screen max Y to prevent | Neil Hodgson | 1 | -0/+2 | |
the window disappearing. | |||||
2014-02-20 | Reverse order of position adjustment so that calltips are more likely | Neil | 1 | -5/+5 | |
to appear below text so lesss likely to cut off start of calltip. | |||||
2014-02-18 | Explain the Version method. | Neil | 1 | -0/+3 | |
2014-02-14 | Fix potential failure if FormatEnumerator_Next called with celt>1. | Neil | 1 | -14/+10 | |
Use std::vector for formats to avoid empty elements. | |||||
2014-02-14 | Fix explanation as confused in bug [#1577]. | Neil | 1 | -1/+1 | |
2014-02-10 | Fix 'possible loss of data' warnings on 64-bit Windows. | Neil | 3 | -11/+11 | |
2014-02-10 | Bug [#1575]. On Qt 5.x double click treated as triple click. | Neil | 2 | -0/+11 | |
From Mike M. | |||||
2014-02-06 | Avoid warning for excessive variable scope. | Neil | 2 | -3/+1 | |
2014-02-06 | Fix crashes and other bugs by removing folding of do-label constructs. | Neil | 2 | -32/+10 | |
2014-02-05 | The Unicode line ends and substyles features added as provisional in 3.2.5 ↵ | Neil | 4 | -83/+76 | |
are now finalised. | |||||
2014-02-05 | Fix to work when there are no provisional features. | Neil | 1 | -1/+4 | |
2014-02-02 | Avoid warnings. | Neil | 3 | -10/+8 | |
2014-02-02 | Added wrap mode SC_WRAP_WHITESPACE which only wraps on whitespace, not on ↵ | Neil | 7 | -7/+18 | |
style changes. From Robert Gieseke. | |||||
2014-02-02 | Change log. | Neil | 1 | -0/+11 | |
2014-02-02 | Fix bug when resizing list with only short strings caused the list to move. | Neil | 1 | -1/+2 | |