aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2012-02-09LexPascal folding improvements:Marko Njezic1-0/+20
- Ignore forward interface declarations as fold points - Fold dispinterface code blocks
2012-02-09Fix rounding issue in SPositionFromLocation() that started with introduction ofMarko Njezic1-1/+1
fractional positioning. Bug #3485669.
2012-02-10Bug #3484416. Modify how scroll bars are hidden in order not tonyamatongwe1-5/+3
interfere with dwelling. From Marko Njezic.
2012-02-08Fix spurious extra indentation guide at end of indentation caused by changenyamatongwe1-9/+17
to fractional positioning.
2012-02-04Make priority wrap actually process all displayed document lines. Bug #3484179.Marko Njezic1-0/+6
2012-02-04Properly highlight EOL blobs. Bug #3484330.Marko Njezic1-16/+20
2012-01-30Fix cursor up/down movement on wrapped lines and lines with annotations.Marko Njezic1-13/+33
Bug #1776560.
2012-02-03Fix crash in wrap mode with DirectWrite when wrapping added text beforenyamatongwe1-0/+1
fonts realised.
2012-01-28Added tag rel-3-0-3 for changeset d147d5b89470nyamatongwe1-0/+1
2012-01-28Updates for 3.0.3.nyamatongwe1-5/+5
2012-01-28Changed release date.nyamatongwe2-3/+3
2012-01-25Mergenyamatongwe7-12/+136
2012-01-24Updates for 3.0.3.nyamatongwe4-9/+126
2012-01-24Mentioned difference between buffered and unbuffered Direct2D.nyamatongwe1-1/+3
2012-01-24Redraw all of fold margin for fold margin highlight. Bug #3469936.nyamatongwe1-1/+1
From Marko Njezic.
2012-01-24Fix a bug where the selection margin was black when starting in wrap mode.nyamatongwe1-0/+3
2012-01-24Credit.nyamatongwe1-0/+2
2012-01-23Avoid laying out beyond end of document. Bug #3476637.nyamatongwe1-1/+1
2012-01-23Added LexAVS to build for Cocoa.nyamatongwe1-0/+4
2012-01-23Lexer for AviSynth from Bruno Barbieri. Feature #3475611.nyamatongwe6-0/+334
2012-01-23Better handling of data URLs by maintaining state until a ')' marks their end.nyamatongwe1-8/+19
From Ross McKay.
2012-01-18Add fractional positioning support to some of the remaining places.Marko Njezic1-3/+3
This improves sub-pixel alignment when drawing control characters, indicators and whitespace dots.
2012-01-18Change wrapIndent, wrapAddIndent, aveCharWidth to support fractional values.Marko Njezic4-14/+15
This improves sub-pixel alignment of indented wrapped lines and sub-pixel positioning that uses aveCharWidth in calculations. Added type casts to certain places to make it clear that loss of precision occurs due to assignment of float to int.
2012-01-18Add fractional positioning support in wrapped lines to certain methods.Marko Njezic1-40/+7
This fixes off by one errors that can happen in some cases. Simplify Editor::PositionFromLineX() method.
2012-01-20Include CXXFLAGS from environment for bug #3476149.nyamatongwe1-5/+5
2012-01-17Added SCSS mode to CSS lexer. From Ross McKay.nyamatongwe4-24/+196
2012-01-16Moved FlexEdit link to current location.nyamatongwe1-1/+1
2012-01-12Fix extra carets in wrapped text under DirectWrite. Bug #3471998.nyamatongwe2-3/+3
2011-12-09Fractional position support.nyamatongwe2-3/+3
2011-12-09Allow fractional widths for single character strings.nyamatongwe1-4/+4
2011-12-30Fold block of single-line comments.Jérôme LAFORGE1-1/+28
2011-12-30Returned to paint handling from before cange set 3983 as this change failednyamatongwe1-21/+18
to always draw the tab bar and output pane in SciTE.
2011-12-28Fold only and all empty HTML tagsUnknown1-7/+8
2011-12-22Avoid BeginPaint/EndPaint for Direct2D as that draws more reliably withnyamatongwe1-18/+21
less corruption.
2011-12-22Sort lexers in alphabetical order.nyamatongwe1-2/+2
2011-12-22Add TCMD lexer to OS X build.nyamatongwe1-0/+4
2011-12-22Replace _strupr with portable code.nyamatongwe1-1/+9
2011-12-22Lexer for the Take Command / TCC scripting language. Feature #3462462.nyamatongwe7-0/+537
From Rex Conn.
2011-12-15Replaced explicit mask test with getter method.nyamatongwe1-2/+2
2011-12-12Anchors for properties documentationUnknown1-2/+2
2011-12-14Remove duplicated clause as this caused warning from cppcheck.nyamatongwe1-1/+1
2011-12-13Bug #3458508. Fixed preprocessor structure messed up by continuation lines.nyamatongwe1-0/+2
2011-12-13Use fractional tabWidth on both sides of expression to avoid double sizenyamatongwe1-2/+2
tabs on wide lines.
2011-12-13Allow fractional pixel size return.nyamatongwe1-1/+1
2011-12-13Allow non-integral space width. From Jason Haslam.nyamatongwe3-18/+18
2011-12-12On GTK+ 2.x, change SurfaceID from GdkDrawable* to a cairo_t* so that it isnyamatongwe2-13/+7
the same as on GTK+ 3.x. This simplifies compatibility and allows implementing printing on GTK+ 2.x.
2011-12-10Don't select into virtual space for SCI_LINESCROLLDOWN/UP. Bug #3451681.nyamatongwe1-2/+4
2011-12-10Use autocompletion height for page up and down. Bug #3455493.nyamatongwe1-2/+2
2011-12-09Highlight column numbers in GCC-style diagnostic lines. Feature #3453075.nyamatongwe1-3/+9
From Jakub Vrána.
2011-12-09Fixed ruby lexer to correctly handle '=begin' comments at start of file. Any ↵Nathan Broadbent1-2/+2
'=' at the start of a file would incorrectly trigger the comment state. --- lexers/LexRuby.cxx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)