Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-05-01 | Cast to make previous change build on Cocoa. | Neil Hodgson | 1 | -1/+1 | |
2014-05-01 | Consolidate insertion for paste into Editor class and perform line end | Neil | 9 | -84/+66 | |
conversion in Editor. | |||||
2014-04-29 | Stop disabling warnings where no longer needed. | Neil | 5 | -17/+3 | |
2014-04-29 | Fix some warnings instead of relying upon #pragma to hide them | Neil | 4 | -6/+6 | |
2014-04-29 | Added DMIS lexer. | Neil Hodgson | 1 | -0/+4 | |
2014-04-29 | Feature [feature-requests:#1049]. Lexer added for DMIS, a language for ↵ | Neil | 6 | -0/+388 | |
coordinate measuring machines. From Andreas Tscharner. | |||||
2014-04-25 | Free system libraries at finalization. | Neil | 2 | -4/+29 | |
2014-04-25 | Delete factories when shutting down to avoid system messages frommm DXGI. | Neil | 1 | -0/+9 | |
2014-04-25 | Allow overriding AbandonPaint by platform code. | Neil | 1 | -1/+1 | |
2014-04-24 | Change log. | Neil | 1 | -0/+17 | |
2014-04-22 | Change log. | Neil Hodgson | 1 | -0/+4 | |
2014-04-22 | Bug [#1593]. Fix drawing bug on Cocoa where previous caret lines were visible | Neil Hodgson | 1 | -4/+5 | |
due to using the visible area instead of the whole drawing area. | |||||
2014-04-22 | Hoisting some calculations into classes: ContractionState::DisplayLastFromDoc | Neil Hodgson | 5 | -27/+32 | |
Range::First and Range::Last. Changing Editor::RectangleFromRange arguments to a Range. Simplifying code and specifying some local variables as const. | |||||
2014-04-21 | Clean line end whitespace. | Neil | 1 | -1/+1 | |
2014-04-21 | View line state in margin with SC_FOLDFLAG_LINESTATE as an aid to debugging. | Neil | 5 | -9/+28 | |
2014-04-21 | Avoid warning about use of bitwise operators on boolean values. | Neil | 1 | -2/+2 | |
2014-04-19 | Use an unnamed namespace instead of static as classes and structs can't be ↵ | Neil | 1 | -9/+14 | |
static. | |||||
2014-04-19 | Optionally highlight escape sequences in strings as SCE_C_ESCAPESEQUENCE. | Neil | 4 | -2/+67 | |
From nkmathew. | |||||
2014-04-18 | Fix calls deprecated in GTK+ 3.10. | Neil | 1 | -2/+11 | |
2014-04-17 | Fix Python 3.x compatibility. | Neil | 1 | -4/+7 | |
2014-04-16 | Allow filtering of insertions. | Neil | 10 | -174/+237 | |
2014-04-15 | Bug [#1592]. Fix bug where caret remained invisible when period set to 0. | Neil | 3 | -1/+14 | |
2014-04-14 | Fix write one past array end bug. | Neil | 1 | -2/+3 | |
2014-04-10 | Link to tutorial by Andreas Tscharner. | Neil Hodgson | 1 | -1/+3 | |
2014-04-03 | Terminate list. | Neil | 1 | -1/+1 | |
2014-04-03 | Feature [feature-requests:#1047]. Supports Go back quoted raw string ↵ | Neil | 2 | -0/+13 | |
literals with lexer.cpp.backquoted.strings option. From Eric Promislow. | |||||
2014-04-03 | C++ lexer can highlight task marker keywords in comments as SCE_C_TASKMARKER. | Neil | 4 | -0/+55 | |
From nkmathew. | |||||
2014-04-01 | Added tag rel-3-4-1 for changeset e73e34b23c59 | Neil | 1 | -0/+1 | |
2014-03-28 | Updating web page for release. | Neil | 1 | -3/+1 | |
2014-03-28 | Updating vesion number for next release. | Neil | 7 | -14/+14 | |
2014-03-28 | Change log. | Neil | 1 | -0/+3 | |
2014-03-28 | Displaying Unicode line ends as [LS], [PS], and [NEL] blobs. | Neil | 1 | -4/+12 | |
2014-03-28 | Change log. | Neil Hodgson | 1 | -0/+15 | |
2014-03-28 | Made indentation consistent. | Neil Hodgson | 1 | -4/+4 | |
2014-03-27 | Surround 10.9-specific calls with version checks to ensure builds on old SDKs. | nyamatongwe | 2 | -0/+6 | |
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 | |