aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2010-11-02Change creation of stippled pixmaps to use FillRectangle calls rather than ↵nyamatongwe1-9/+8
LineTo to avoid blurry images when using an antialiased drawing library like Cairo.
2010-10-31Documentation.nyamatongwe1-0/+2
2010-10-27Better version of last patch should get eolfilled right.nyamatongwe1-1/+1
2010-10-26Whitespace.nyamatongwe1-1/+1
2010-10-26Fix problem with background style appearing after last character on line.nyamatongwe1-0/+1
2010-10-22Addition of '?' regular expression operator to indicate 0 or 1 occurrencesnyamatongwe1-31/+62
and non-greedy matches.
2010-10-20Fixed code that did not split style bytes into styles and indicators.nyamatongwe1-4/+4
2010-10-20Feature request #3064696 SCI_VERTICALCENTRECARET: center current line in window.nyamatongwe2-2/+18
2010-10-11Feature request #3082409 implemented for SCN_HOTSPOTRELEASECLICK event.nyamatongwe2-0/+24
Contributed by Farshid Lashkari.
2010-10-08Fix for bug #3081721. Scroll to make caret visible off-by-one error.nyamatongwe1-1/+1
2010-10-06Fix for bug #3079114: Set x chosen after autocompletion.nyamatongwe1-0/+1
2010-09-29Fix for bug #3077452 PgUp/PgDn not virtual space aware.nyamatongwe1-8/+11
2010-09-25Optimization of line layout by minimizing calls in Editor::LayoutLine and ↵nyamatongwe6-17/+45
avoiding case force processing unless at least one style uses a case force option.
2010-09-25Bug #3075074 fixed. AddMark and AddMarkSet need to check line argnyamatongwe1-1/+4
2010-09-24Added GetRange method to SplitVector as fast way to retrieve elements.nyamatongwe2-4/+18
2010-09-24Added SCI_CONTRACTEDFOLDNEXT as a way to find contracted fold headers ↵nyamatongwe4-0/+34
efficiently.
2010-09-23Fix for bug #3073481, in MouseLeave set ptMouseLast to (-1,-1) so will not sendnyamatongwe1-1/+6
dwell start on timer. Send dwell end for mouse leave.
2010-09-16Making methods const when they should be.nyamatongwe2-4/+4
2010-09-16Make internal methods private.nyamatongwe1-4/+4
2010-09-15Fix for bug #3065912 Fail to Search up when code.page = 936nyamatongwe1-1/+1
2010-09-06More accurate range for LineState modification notification so doesn't hit ↵nyamatongwe1-1/+1
the start of document.
2010-08-29Fixed crash when lexer asks for line state of negative line. Better to just ↵nyamatongwe1-0/+2
return 0.
2010-08-27NextPosition treats \r\n as two characters as this allows searching for \n.nyamatongwe1-13/+1
2010-08-19Adding GetLineIndentation to IDocument.nyamatongwe2-5/+5
2010-08-19Exposed BufferPointer through IDocument.nyamatongwe1-1/+1
2010-08-15Ensure lexers linked in whenever asked to find a lexer.nyamatongwe1-0/+2
2010-08-13Fix for bug #3043419 Unfolding incorrectly.nyamatongwe1-1/+10
When new line characters are inserted on a folded fold header line, the fold is unfolded.
2010-08-07Fix crash when calling SCI_REPLACETARGETRE without having done a search first.nyamatongwe1-1/+4
2010-08-05Avoid drawing old pixbuf contents when scrolled far horizontally.nyamatongwe1-0/+2
Caused by 16-bit integer underflow on coordinates, possibly in X.
2010-08-05Case insensitive search in DBCS and faster processing of DBCS.nyamatongwe2-18/+62
DBCS case folder implemented on Windows.
2010-08-05Added code page 1361 Korean Johab to IsDBCSLeadByte.nyamatongwe1-2/+7
2010-08-04Using NextPosition rather than MovePositionOutsideChar for column operationsnyamatongwe1-6/+8
and brace matching as it is much faster on DBCS text.
2010-08-04Added NextPosition as more efficient way to iterate through DBCS characters.nyamatongwe2-0/+71
2010-08-04Simplified DBCS to only handle 1 and 2 byte characters in CP 932, 936, 949, ↵nyamatongwe1-18/+21
or 950. Moved DBCS processing from Platform to Document.
2010-07-28Restore container lexing functionality which was accidentally removed by ↵rel-2-20nyamatongwe3-6/+14
lexer objects changes.
2010-07-27Fix problems with line state and fold level by duplicating value rather than ↵nyamatongwe1-5/+3
inserting default.
2010-07-24Removed debug logging.nyamatongwe1-4/+3
2010-07-17Lexer for Txt2tags contributed by Eric Forgeot.nyamatongwe1-0/+1
2010-07-17Removed dead comment.nyamatongwe1-3/+0
2010-07-16Removed dead comments.nyamatongwe1-3/+0
2010-07-14Files no longer needed due to Lexer Object changes.nyamatongwe5-1072/+0
2010-07-13Using Make functions to avoid regenerating makefile when set of lexers changed.nyamatongwe1-1/+0
2010-07-13Allowing simpler property definition comments.nyamatongwe1-1/+26
2010-07-13Changed to match new lexer code in LexCPP.cxx.nyamatongwe1-3/+4
2010-07-13Files changed for new lexer design.nyamatongwe12-260/+388
2010-07-13New files for new lexer implementation.nyamatongwe2-0/+207
2010-07-13Creating lexlib with lexer support files.nyamatongwe4-324/+0
2010-07-13Moved lexers into lexers directory.nyamatongwe78-33373/+0
2010-07-12Feature #3027559 Extend "sticky caret" feature from Jason Oster.nyamatongwe2-11/+21
Additional mode SC_CARETSTICKY_WHITESPACE implemented.
2010-07-12Fix regular expression searches for ranges above 0x80 like [A-€].nyamatongwe1-2/+2