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