aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2012-03-29Fixed a bug with the bash lexer's handling of singly-quoted strings. SF Bug ↵James Ribe1-2/+9
Tracker ID: 3512208
2012-03-27Protect against modifying annotations with a negative line number or a linenyamatongwe2-31/+37
number after the document end.
2012-03-27Ensure default style copied to all styles so that font attributes work.nyamatongwe1-0/+2
2012-03-26Update documentation for \0 change.nyamatongwe1-3/+4
2012-03-25Replace \0 by found text in regular expressions searchUnknown1-2/+2
2012-03-25Avoid warnings from example code.nyamatongwe2-2/+2
2012-03-22Bug #3509317. Properly mask state when re-lexing. Remove dead code.Marko Njezic1-12/+7
2012-03-25Add test for bug #3509317.nyamatongwe2-0/+8
2012-03-25Fix lexer tests to test subranges correctly.nyamatongwe1-2/+2
2012-03-22Use SparseState instead of std::vector.Jerome LAFORGE1-12/+4
Cleaning dead code. Feature #3510158.
2012-03-24Typo.nyamatongwe1-1/+1
2012-03-21Ensure segment discovery always makes progress even for invalid UTF-8.nyamatongwe1-1/+6
2012-03-21Bug #3508602. Avoid hang with diff files. From zenico.nyamatongwe2-5/+18
2012-03-13Improvement of folding for CASE/MERGE statement.Jerome LAFORGE1-24/+72
Bug #3503277.
2012-03-13Change name of the 'layout' method of ScintillaView and InfoBar to ↵nyamatongwe4-11/+11
'positionSubViews' as 'layout' has been added to their superclass NSView in OS X 10.7. The existing 'layout' method interfered with the new automatic layout feature.
2012-03-11Manage MERGE statement like CASE statement.Jerome LAFORGE1-3/+31
Bug #3499664.
2012-03-11Credit.nyamatongwe1-0/+1
2012-03-11Make mouse wheel scrolling work again on recent GTK+. Bug #3501321.nyamatongwe1-0/+1
From Sébastien Granjoux.
2012-03-08Added tag rel-3-0-4 for changeset 2faf55888eebnyamatongwe1-0/+1
2012-03-06Fixing documentation for SCI_AUTOCSETCANCELATSTART. Bug #3497038.nyamatongwe1-2/+2
2012-03-03Updates for 3.0.4.nyamatongwe5-12/+173
2012-02-29Always record undo action for Ctrl+DUnknown1-1/+1
2012-03-03Credit.nyamatongwe1-0/+1
2012-02-29Bug #3495791. Create auxiliary surfaces on Direct2D without alpha channel, asMarko Njezic2-4/+7
no underlying code expects them to be transparent. This will make text drawing use the same anti-aliasing mode no matter if using buffered mode or not.
2012-03-01Fix unsafe typecast. Bug #3495966.Marko Njezic1-1/+1
2012-03-03Fix crash caused by NULL pointer for SCI_MOVESELECTEDLINESDOWN. Bug #3496403.nyamatongwe1-1/+1
2012-03-03Bug #3494744. Implement InternalLeading() method on Direct2D. This will ↵nyamatongwe1-6/+20
improve drawing of text blobs and dimensioning of call tips. From Marko Njezic.
2012-03-03Remove unused variables. Bug #3494744. From Marko Njezic.nyamatongwe3-6/+0
2012-03-01Ignore cppcheck configuration when committing.nyamatongwe1-0/+1
2012-03-01Bug #3494492. Prevent AlphaRectangle() from drawing blurry rectangle under ↵nyamatongwe1-11/+22
Direct2D. From Marko Njezic.
2012-03-01Bug #3494492. Change aveCharWidth in FontMeasurements to actually storenyamatongwe4-6/+6
fractional width. This change complements change set 3994. Make WidthText() and AverageCharWidth() actually return fractional widths under Direct2D. From Marko Njezic.
2012-03-01Remove duplicated code. Bug #3494492. From Marko Njezic.nyamatongwe1-1/+0
2012-03-01Enable basic pinch zoom. From Matthew Brush.nyamatongwe1-0/+16
2012-02-29Bug #3494202. Fix blurry RGBA markers on Direct2D when centring causednyamatongwe1-4/+4
fractional coordinates.
2012-02-29Centre RGBA markers in all cases including when larger than allocation. Bug ↵nyamatongwe1-1/+7
#3494184.
2012-02-29Bug #3493503. Clip drawing operations to the painting area when using unbufferednyamatongwe1-5/+10
mode. This prevents parts of margin being drawn out of bounds. Don't set clipping region when buffered mode is used, as it is not necessary. From Marko Njezic.
2012-02-28Bug #3495445. Properly mask restored state after processing keywords in documentMarko Njezic1-1/+1
comment that's inside disabled preprocessor macro.
2012-02-27Feature #3493530. Reduce amount of redrawing triggered by ↵nyamatongwe1-2/+3
SCI_MARKERSETBACKSELECTED and SCI_MARKERENABLEHIGHLIGHT. From Marko Njezic.
2012-02-25Remove unused variable.Marko Njezic2-6/+0
2012-02-25Bug #3493503. Properly redraw image markers with height larger than line height.Marko Njezic3-1/+39
Regression from change set 3949.
2012-02-25Fix dead code warnings from Xcode Analyze.nyamatongwe2-4/+1
2012-02-17Draw markers horizontally off center only on textual margins. Bug #3488696.Marko Njezic3-5/+5
2012-02-23Fix warning from PVS-Studio that could have trated non-operators as ↵nyamatongwe1-1/+1
operators for folding.
2012-02-19Enable differentiation of --! bang comments as this was disabled by poorlynyamatongwe1-3/+0
written code. Noticed by PVS-Studio.
2012-02-17Make fold tail markers vertically centered.Marko Njezic1-13/+12
2012-02-18Bug #3487397. Reduce time spent in idling before allowing paint from 200nyamatongwe1-1/+2
to 50 milliseconds to make interaction less laggy.
2012-02-18Wrap lines if needed when moving to a position. Bug #3487397.nyamatongwe1-3/+7
From Marko Njezic.
2012-02-18Add ECL lexer.nyamatongwe1-0/+4
2012-02-18Lexer added for ECL language. Feature #3488209.nyamatongwe7-0/+580
2012-02-18Avoid scrolling window before it is realized. Bug #3488481.nyamatongwe1-2/+4