Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-02-28 | Return last display line for document lines beyond document end. | nyamatongwe | 1 | -1/+1 | |
2013-02-28 | Removed unnecessary code. | nyamatongwe | 1 | -6/+2 | |
2013-02-26 | Spelling. | nyamatongwe | 1 | -1/+1 | |
2013-02-26 | Added tag rel-3-2-5 for changeset 74f6ed8c5737 | nyamatongwe | 1 | -0/+1 | |
2013-02-26 | Mention provisional features. | nyamatongwe | 1 | -1/+3 | |
2013-02-26 | Added Unicode support in StyleContext and LexAccessor::LineEnd to change list. | nyamatongwe | 1 | -0/+6 | |
2013-02-25 | Updated change list with last fix. | nyamatongwe | 1 | -0/+3 | |
2013-02-24 | Less intense version of previous change: just mark the view for drawing ↵ | nyamatongwe | 1 | -1/+1 | |
instead of drawing. | |||||
2013-02-24 | Fix problem where abandoned paints may not cause redraw. | nyamatongwe | 1 | -1/+3 | |
2013-02-23 | Bug: [#1447]. Interpret PHP within HTML comments. | nyamatongwe | 1 | -2/+1 | |
2013-02-22 | Fixed wording. | nyamatongwe | 1 | -2/+2 | |
2013-02-22 | Listed changes for 3.2.5. | nyamatongwe | 2 | -2/+39 | |
2013-02-22 | Prepare for 3.2.5. | nyamatongwe | 7 | -16/+22 | |
2013-02-22 | Longer name for new errorlist lexer state. | nyamatongwe | 3 | -3/+3 | |
2013-02-22 | Define the maximum number of margins in Scintilla.iface. | nyamatongwe | 6 | -12/+15 | |
2013-02-21 | Feature: [#978]. Update preprocessor defines upon encountering an #undef ↵ | nyamatongwe | 2 | -3/+20 | |
directive. From Alpha. | |||||
2013-02-21 | Fixed outdated comment. | nyamatongwe | 1 | -2/+1 | |
2013-02-20 | Recognise GCC include path diagnostics that appear before an error. | nyamatongwe | 3 | -0/+6 | |
2013-02-20 | Removed function that is no longer used. | nyamatongwe | 1 | -5/+0 | |
2013-02-20 | Bug: [#1447]. Don't interrupt HTML comment for XML Processing Instruction. | nyamatongwe | 1 | -0/+1 | |
2013-02-18 | Drop -Wno-long-long as it makes no difference on current systems. | nyamatongwe | 1 | -2/+2 | |
Add --std=c++0x when compiling with clang as would like to move to c++11. clang only works on new distributions so the option will be present when useful. | |||||
2013-02-18 | Update make dependencies. | 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 | Fix drawing of markers at negative coordinates due to integer truncation. | nyamatongwe | 1 | -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-18 | Bug: [#1446]. Display thumb at correct position when SetVScrollBar(true) called. | nyamatongwe | 1 | -0/+2 | |
2013-02-07 | Fix crash that can occur after running "Convert to Modern Objective-C Syntax" | nyamatongwe | 1 | -4/+4 | |
which leads to an NSArray that contains nil. | |||||
2013-02-05 | To run Clang analyzer, use 'analyze' target instead of defining 'CLANG_ANALYZE'. | nyamatongwe | 1 | -5/+5 | |
This prevents later failures with linking. | |||||
2013-02-05 | Credit. | nyamatongwe | 1 | -0/+1 | |
2013-02-05 | Add allocation of extended styles. | nyamatongwe | 7 | -1/+66 | |
2013-02-05 | Add in some extensions used by msbuild for Visual C++ 2012. | nyamatongwe | 2 | -1/+10 | |
2013-01-30 | Fix clang --analyze warnings. | nyamatongwe | 1 | -2/+2 | |
2013-01-30 | Allow access to secondary styles distance. | nyamatongwe | 1 | -0/+4 | |
2013-01-30 | Type casts so will build in std=c++11 mode. | nyamatongwe | 3 | -7/+7 | |
2013-01-30 | Added assert to silence Xcode analyse warning. | nyamatongwe | 1 | -0/+2 | |
2013-01-30 | Updated for Xcode 4.6. | nyamatongwe | 1 | -1/+1 | |
2013-01-27 | Check result from CreateDCRenderTarget. | nyamatongwe | 1 | -13/+15 | |
2013-01-27 | Disallow copying VarBuffer objects to ensure memory is managed correctly. | nyamatongwe | 1 | -0/+3 | |
2013-01-26 | Fixed unused value warning. | nyamatongwe | 1 | -2/+1 | |
2013-01-26 | Use CXXFLAGS for C++ only, not for C. | nyamatongwe | 1 | -3/+3 | |
2013-01-11 | Add folding support to the GetText (PO) lexer | Colomban Wendling | 1 | -1/+65 | |
2013-01-19 | Add private copy constructors to prevent copying and avoid warnings. | nyamatongwe | 4 | -0/+11 | |
2013-01-19 | Implement provisional category and place Unicode line ends and substyles ↵ | nyamatongwe | 4 | -62/+101 | |
into it. | |||||
2013-01-19 | Implement Unicode line ends and substyles in C++ lexer. | nyamatongwe | 2 | -21/+267 | |
2013-01-19 | Implement generic support for Unicode line ends and sub styles in lexer ↵ | nyamatongwe | 3 | -16/+260 | |
support classes. | |||||
2013-01-19 | Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document, | nyamatongwe | 9 | -8/+206 | |
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 | 3 | -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-19 | Implement APIs for Unicode line ends and substyles and expose to | nyamatongwe | 6 | -9/+220 | |
message interface. Expose IDocumentWithLineEnd interface on Document. | |||||
2013-01-19 | Add methods for Unicode line ends and substyles to IDocument and ILexer | nyamatongwe | 2 | -4/+57 | |
producing IDocumentWithLineEnd and ILexerWithSubStyles. | |||||
2013-01-19 | Add encodingType and documentVersion to decode and cache information | nyamatongwe | 1 | -2/+18 | |
about the document. | |||||
2013-01-17 | Added tag rel-3-2-4 for changeset 1092d3d24959 | nyamatongwe | 1 | -0/+1 | |