aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2013-02-18Don't draw line numbers before start of document.nyamatongwe1-2/+3
For elastic over-shoot scrolling, Scintilla was drawing lines with 0, -1, ... in the margin.
2013-02-18Fix drawing of markers at negative coordinates due to integer truncation.nyamatongwe1-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-18Bug: [#1446]. Display thumb at correct position when SetVScrollBar(true) called.nyamatongwe1-0/+2
2013-02-07Fix crash that can occur after running "Convert to Modern Objective-C Syntax"nyamatongwe1-4/+4
which leads to an NSArray that contains nil.
2013-02-05To run Clang analyzer, use 'analyze' target instead of defining 'CLANG_ANALYZE'.nyamatongwe1-5/+5
This prevents later failures with linking.
2013-02-05Credit.nyamatongwe1-0/+1
2013-02-05Add allocation of extended styles.nyamatongwe7-1/+66
2013-02-05Add in some extensions used by msbuild for Visual C++ 2012.nyamatongwe2-1/+10
2013-01-30Fix clang --analyze warnings.nyamatongwe1-2/+2
2013-01-30Allow access to secondary styles distance.nyamatongwe1-0/+4
2013-01-30Type casts so will build in std=c++11 mode.nyamatongwe3-7/+7
2013-01-30Added assert to silence Xcode analyse warning.nyamatongwe1-0/+2
2013-01-30Updated for Xcode 4.6.nyamatongwe1-1/+1
2013-01-27Check result from CreateDCRenderTarget.nyamatongwe1-13/+15
2013-01-27Disallow copying VarBuffer objects to ensure memory is managed correctly.nyamatongwe1-0/+3
2013-01-26Fixed unused value warning.nyamatongwe1-2/+1
2013-01-26Use CXXFLAGS for C++ only, not for C.nyamatongwe1-3/+3
2013-01-11Add folding support to the GetText (PO) lexerColomban Wendling1-1/+65
2013-01-19Add private copy constructors to prevent copying and avoid warnings.nyamatongwe4-0/+11
2013-01-19Implement provisional category and place Unicode line ends and substyles ↵nyamatongwe4-62/+101
into it.
2013-01-19Implement Unicode line ends and substyles in C++ lexer.nyamatongwe2-21/+267
2013-01-19Implement generic support for Unicode line ends and sub styles in lexer ↵nyamatongwe3-16/+260
support classes.
2013-01-19Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document,nyamatongwe9-8/+206
Editor and the message interface. Will only be turned on for lexers that support Unicode line ends.
2013-01-19To allow for new line end sequences implement IsPositionInLineEnd on thenyamatongwe3-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-19Implement APIs for Unicode line ends and substyles and expose tonyamatongwe6-9/+220
message interface. Expose IDocumentWithLineEnd interface on Document.
2013-01-19Add methods for Unicode line ends and substyles to IDocument and ILexernyamatongwe2-4/+57
producing IDocumentWithLineEnd and ILexerWithSubStyles.
2013-01-19Add encodingType and documentVersion to decode and cache informationnyamatongwe1-2/+18
about the document.
2013-01-17Added tag rel-3-2-4 for changeset 1092d3d24959nyamatongwe1-0/+1
2013-01-15Update release date.nyamatongwe2-3/+3
2013-01-14Updated history with changes for 3.2.4.nyamatongwe2-1/+77
2013-01-12Fix copy&paste error in comment.nyamatongwe1-1/+1
2013-01-11Prepare for 3.2.4.nyamatongwe7-13/+22
2013-01-11Feature: [#970]. Latex folding and better syntax highlighting.nyamatongwe1-0/+4
From G. Hu.
2013-01-11Feature: [#970]. Latex folding and better syntax highlighting.nyamatongwe5-297/+547
From G. Hu.
2013-01-11Bug: [#1436] Remove as observer in TimerTarget dealloc.nyamatongwe1-0/+2
2013-01-10Updated to style hidden commands differently.nyamatongwe3-69/+118
From Mike Lischke.
2013-01-10Removed dead stores.nyamatongwe1-2/+2
2013-01-10Add a replace method and a parameter for backwards search.nyamatongwe2-24/+180
From Mike Lischke.
2013-01-10Turn off undo collection for IME composition.nyamatongwe2-17/+37
From Mike Lischke.
2013-01-10Switched Alt+Delete to delete word left to be more compatible withnyamatongwe1-1/+1
OS X standards.
2013-01-08Bug: [#1289]. Replace null characters by spaces in the clipboard to avoid thatVivian De Smedt1-0/+13
its content is truncated in the paste operation.
2013-01-08Fix memory leak.nyamatongwe1-1/+1
2013-01-06Bug #1430. Fix crash when printing line longer than 8000 characters.nyamatongwe1-1/+1
2013-01-04Explaining that annotations affect the relationship between documentnyamatongwe1-4/+10
lines and display lines.
2013-01-04When setting a font name, set first 128 styles insted of 32 as willnyamatongwe1-1/+1
work for more lexers. From Mike Lischke at Oracle.
2013-01-04Implement a delegate for Scintilla notifications.nyamatongwe2-1/+20
From Mike Lischke at Oracle.
2013-01-04Fix retain count of timerTarget so it can be deallocated.nyamatongwe1-1/+1
From Mike Lischke at Oracle.
2013-01-04Fix object ownership and thus memory management. Change owner and backendnyamatongwe2-7/+8
properties to (nonatomic, assign) as pointers to owners should not be retained and backend is a pointer to a C++ object. Move property declarations before methods. Update copyright notice. From Mike Lischke at Oracle.
2013-01-04Fix positioning of autompletion lists on retina displays.nyamatongwe1-2/+1
From Mike Lischke at Oracle.
2013-01-03Added modern indicators to API list.nyamatongwe1-1/+16