aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2013-03-15Simplify calculation of visible line for point.nyamatongwe1-4/+2
2013-03-13Implement high-priority idle work on Cocoa to avoid abandoning paints in ↵nyamatongwe5-3/+68
some situations. Rename IdleStyling to IdleWork.
2013-03-13Call UpdateUI before blit scrolling so caret change will have been processedUnknown1-0/+1
and brace highlighting updated before painting.
2013-03-13Add different types of task to StyleNeeded mechanism, renaming to WorkNeeded.Unknown3-23/+31
Ask to perform update UI work for some selection moves.
2013-03-13Handle test and reset of needUpdateUI in NotifyUpdateUI so less chance of ↵Unknown2-14/+13
desync.
2013-03-11Bug [#1412]. Recognise a JavaScript RegExp literal in more situations.nyamatongwe1-5/+3
2013-03-10Make property readonly to avoid potential ownership/lifetime issues.nyamatongwe1-1/+1
2013-03-10Extract Window::Cursor enum -> NSCursor* mapping so can be reused.nyamatongwe1-26/+27
2013-03-10Fix spelling in comments. Add missing comment.nyamatongwe2-4/+7
2013-03-10Remove remnants of Carbon.nyamatongwe2-7/+2
2013-03-07Bug: [#482]. Refix to make /// comment not affect folding of following /* ↵nyamatongwe1-3/+7
comment.
2013-02-25Editor: SCI_LINESCROLL: treat columns as signedMook2-2/+10
2013-02-28Return last display line for document lines beyond document end.nyamatongwe1-1/+1
2013-02-28Removed unnecessary code.nyamatongwe1-6/+2
2013-02-26Spelling.nyamatongwe1-1/+1
2013-02-26Added tag rel-3-2-5 for changeset 74f6ed8c5737nyamatongwe1-0/+1
2013-02-26Mention provisional features.nyamatongwe1-1/+3
2013-02-26Added Unicode support in StyleContext and LexAccessor::LineEnd to change list.nyamatongwe1-0/+6
2013-02-25Updated change list with last fix.nyamatongwe1-0/+3
2013-02-24Less intense version of previous change: just mark the view for drawing ↵nyamatongwe1-1/+1
instead of drawing.
2013-02-24Fix problem where abandoned paints may not cause redraw.nyamatongwe1-1/+3
2013-02-23Bug: [#1447]. Interpret PHP within HTML comments.nyamatongwe1-2/+1
2013-02-22Fixed wording.nyamatongwe1-2/+2
2013-02-22Listed changes for 3.2.5.nyamatongwe2-2/+39
2013-02-22Prepare for 3.2.5.nyamatongwe7-16/+22
2013-02-22Longer name for new errorlist lexer state.nyamatongwe3-3/+3
2013-02-22Define the maximum number of margins in Scintilla.iface.nyamatongwe6-12/+15
2013-02-21Feature: [#978]. Update preprocessor defines upon encountering an #undef ↵nyamatongwe2-3/+20
directive. From Alpha.
2013-02-21Fixed outdated comment.nyamatongwe1-2/+1
2013-02-20Recognise GCC include path diagnostics that appear before an error.nyamatongwe3-0/+6
2013-02-20Removed function that is no longer used.nyamatongwe1-5/+0
2013-02-20Bug: [#1447]. Don't interrupt HTML comment for XML Processing Instruction.nyamatongwe1-0/+1
2013-02-18Drop -Wno-long-long as it makes no difference on current systems.nyamatongwe1-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-18Update make dependencies.nyamatongwe1-5/+5
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