Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-08-04 | Using NextPosition rather than MovePositionOutsideChar for column operations | nyamatongwe | 1 | -6/+8 | |
and brace matching as it is much faster on DBCS text. | |||||
2010-08-04 | Added NextPosition as more efficient way to iterate through DBCS characters. | nyamatongwe | 1 | -0/+70 | |
2010-08-04 | Simplified DBCS to only handle 1 and 2 byte characters in CP 932, 936, 949, ↵ | nyamatongwe | 1 | -18/+21 | |
or 950. Moved DBCS processing from Platform to Document. | |||||
2010-07-28 | Restore container lexing functionality which was accidentally removed by ↵ | nyamatongwe | 1 | -1/+1 | |
lexer objects changes. | |||||
2010-07-24 | Removed debug logging. | nyamatongwe | 1 | -4/+3 | |
2010-07-13 | Files changed for new lexer design. | nyamatongwe | 1 | -13/+84 | |
2010-07-07 | Redraw when annotations change. | nyamatongwe | 1 | -4/+10 | |
DeleteAllMarks will only cause a modification notification when a mark was actually deleted. | |||||
2010-06-18 | Fix for bug #3017572 FindText crashes with empty text | nyamatongwe | 1 | -0/+2 | |
Always return start position when search text is empty. | |||||
2010-05-05 | Made some methods const. | nyamatongwe | 1 | -2/+2 | |
2010-04-03 | NUL characters in text formats on clipboard terminate the text. | nyamatongwe | 1 | -1/+1 | |
This is a reversion to 2.03 behaviour because of other applications using large clipboard allocations for small pieces of text. | |||||
2010-03-26 | Simplify code and use better variable names. | nyamatongwe | 1 | -76/+57 | |
2010-03-25 | New case insensitive searching implementation uses objects implementing | nyamatongwe | 1 | -16/+138 | |
the CaseFolder interface to fold both search text and document text so they can be compared with a simple strcmp. A simple table based folder CaseFolderTable is used for 8 bit encodings and maps input bytes to folded bytes. For multi-byte encodings except for UTF-8 a null (output same as input) CaseFolderTable is used. For UTF-8, more complex subclasses are used which call platform APIs to perform the folding. Folding is approximately to lower case although this differs between platforms. | |||||
2010-03-14 | Fixed bug where number of character in regular expression replace was | nyamatongwe | 1 | -0/+1 | |
miscounting size of result which could lead to NULs in result. | |||||
2010-03-11 | Using passed length rather than 0 termination in case need to process text | nyamatongwe | 1 | -1/+1 | |
containing NULs. | |||||
2010-02-28 | Fix for bug #2959876 Regular expression replace cannot escape \ | nyamatongwe | 1 | -0/+3 | |
2010-02-17 | Formatting whitespace. | nyamatongwe | 1 | -45/+45 | |
2010-01-19 | Reduced scope of variable. | nyamatongwe | 1 | -1/+1 | |
2009-07-21 | Using a much simpler property set implementation. | nyamatongwe | 1 | -10/+0 | |
Accessor objects use the PropertyGet interface to access just the property set methods they need. Removed SString. | |||||
2009-07-12 | Since now using exceptions, don't check result from new. | nyamatongwe | 1 | -4/+0 | |
2009-07-12 | Since exception handling now turned on, do not check return value from new. | nyamatongwe | 1 | -2/+0 | |
2009-07-10 | Duplicate works on discontiguous selections by duplicating each selection. | nyamatongwe | 1 | -4/+2 | |
UndoGroup class simplifies grouping actions together in the undo history. | |||||
2009-07-03 | Discontiguoues selection and virtual space initial commit. | nyamatongwe | 1 | -0/+4 | |
2009-06-24 | Some extra const constraints added while working on discontiguous selection. | nyamatongwe | 1 | -3/+3 | |
2009-06-10 | Clear out per-line data when all contents removed. | nyamatongwe | 1 | -0/+7 | |
2009-04-25 | Avoid out of bounds write when asked to add marker to line beyond end of | nyamatongwe | 1 | -5/+9 | |
document. | |||||
2009-04-22 | Removed Document methods that returned parts of annotations in favour of | nyamatongwe | 1 | -39/+9 | |
methods that return StyledText objects. Provided LineLength call on StyledText rather than iterator objects. Simplified code and made more things const. | |||||
2009-04-22 | Fixed bug where not styling last document line on screen when followed by | nyamatongwe | 1 | -0/+10 | |
annotation lines. StyledText class encapsulates related data when drawing annotations and margins. | |||||
2009-04-12 | Annotations and text margins added. | nyamatongwe | 1 | -7/+157 | |
2009-04-04 | Added AddUndoAction call for adding application actions into undo stack. | nyamatongwe | 1 | -6/+18 | |
2008-12-23 | Avoid warnings with gcc 4.3 | nyamatongwe | 1 | -4/+4 | |
2008-12-16 | Namespace work for OS X / XCode compatibility. | nyamatongwe | 1 | -4/+6 | |
2008-10-22 | Fixes a namespace problem with the new replaceable regex. | nyamatongwe | 1 | -0/+8 | |
2008-06-29 | Simon Steele's modification to allow replacing the regular | nyamatongwe | 1 | -195/+227 | |
expression implementation. | |||||
2008-04-15 | Florian Balmer fixed VCHome for last line of document. | nyamatongwe | 1 | -2/+2 | |
2007-10-10 | Detect and handle invalid byte sequences in UTF-8 mode by displaying each | nyamatongwe | 1 | -5/+55 | |
individual invalid byte as a hex blob. | |||||
2007-07-27 | Changed lineStates to a SplitVector so that it supports insert and delete | nyamatongwe | 1 | -1/+0 | |
so inserting and deleting lines does not cause a really large number of changed values under most circumstances leading to fewer notifications. SVector is no longer used. | |||||
2007-07-26 | Added notification for changing line state and use it to redraw if a line | nyamatongwe | 1 | -9/+11 | |
state change overruns the end of painting. | |||||
2007-07-08 | Added const to methods that should not logically need to modify object. | nyamatongwe | 1 | -5/+5 | |
2007-07-05 | Moved expansion and contraction of decorators from Editor to Document | nyamatongwe | 1 | -0/+5 | |
as its slightly better modularity. | |||||
2007-06-24 | Make the styles array variable length so it can be increased to 256 entries | nyamatongwe | 1 | -5/+1 | |
without always taking 24K. | |||||
2007-06-01 | integrate OS X support for scintilla. a big patch with a little commit ↵ | scaraveo | 1 | -0/+4 | |
message :) - now uses namespaces (optionally for non-os x) to avoid conflicts with OS X libraries - several fixes in the OS X layer since the branch was commited in 2005 - used in Komodo since 2005, so pretty stable | |||||
2007-04-19 | Optimized indicator changing with separate SC_MOD_CHANGEINDICATOR | nyamatongwe | 1 | -4/+1 | |
notification flag. | |||||
2007-04-19 | All Unicode planes supported, not just the Basic Multilingual Plane. | nyamatongwe | 1 | -1/+3 | |
2007-04-07 | More decoration code, with modifications reported from document to views | nyamatongwe | 1 | -0/+11 | |
although this isn't optimal. Some checking for null changes. Messages documented. Methods for changing indicators in Accessor so can be used by lexers. | |||||
2007-04-05 | Implemented decorations which are extended indicators. | nyamatongwe | 1 | -0/+2 | |
2007-02-13 | Optimisation that avoids double check for line ends. | nyamatongwe | 1 | -2/+2 | |
2007-01-26 | Separated reentrance check into text modification and styling modification ↵ | nyamatongwe | 1 | -20/+21 | |
flags to allow styling to be performed within a text modification | |||||
2007-01-26 | Avoid trying to style when inside a modification as that styling will be ↵ | nyamatongwe | 1 | -3/+2 | |
thrown away. | |||||
2007-01-02 | Separated the cell buffer into substance and style buffers. | nyamatongwe | 1 | -33/+14 | |
2007-01-01 | Major change to CellBuffer class with addition of Partitioning class and ↵ | nyamatongwe | 1 | -1/+3 | |
SplitVector template. Inserting and deleting lines are made more efficient by lessening the amount of per line information copied. Marker data is only allocated for each line if markers are added. |