Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2006-10-29 | Fix infinite loop when GetColumn called with position beyond end of text. | nyamatongwe | 1 | -0/+2 | |
2006-10-17 | Armel Asselin contributed a feature that adds the flag SC_STARTACTION to | nyamatongwe | 1 | -4/+6 | |
modification notifications where the modification is the first step of an undo transaction. This is used to synchronize with the container's undo stack. | |||||
2006-02-25 | Patch from Greg Smith with further modifications moved character | nyamatongwe | 1 | -39/+23 | |
classification from Document into a separate CharClassify class and file and uses this from RESearch for regular expression word end \< and \> instead of built-in table. | |||||
2005-12-11 | Patch from Armel Asselin in RFE 1377661 to store positions in undo stack | nyamatongwe | 1 | -4/+4 | |
in terms of document (cell) position rather than byte position. Will help allow expansion to more than 2 bytes per cell. | |||||
2005-12-09 | Fixed bug #1373855 by taking DBCS into account when matching braces. | nyamatongwe | 1 | -0/+52 | |
Moved brace matching from Editor into Document. | |||||
2005-12-04 | Marker modification notifications contain the correct line number | nyamatongwe | 1 | -0/+5 | |
for single marker changes and -1 for multiple marker changes. This ensures redrawn when changed. | |||||
2005-11-16 | The indent command no longer indents completely empty lines. | nyamatongwe | 1 | -3/+6 | |
2005-10-30 | MarkerAddSet added. | nyamatongwe | 1 | -0/+9 | |
2005-09-10 | Reduced range of styling modification notification so that out of region | nyamatongwe | 1 | -4/+7 | |
painting is less likely, so painting will complete without triggering a full repaint. This was a problem with some lexers that backtracked to see if the line before a modification needed restyling. | |||||
2005-06-07 | Added virtual destructor to avoid warnings from GCC 4. | nyamatongwe | 1 | -0/+3 | |
2005-06-02 | Fix bug in multi-byte encodings where making selection upper case or lower | nyamatongwe | 1 | -4/+3 | |
case would not change the first character on each line. | |||||
2005-05-07 | Patch from Robert that avoids slow performance for multiple step undo | nyamatongwe | 1 | -76/+100 | |
or redo by only modifying the scroll bars at the end. When document is read only, undo and redo send a SCN_MODIFYATTEMPTRO notification. | |||||
2005-04-13 | Patch from Robert to include line number in some marker notifications. | nyamatongwe | 1 | -2/+2 | |
2005-03-19 | Patch from Franck Marcia to treat lines containing only whitespace as | nyamatongwe | 1 | -15/+27 | |
empty for the paragraph up and paragraph down actions. | |||||
2005-02-08 | Patch from Josiah Reynolds to avoid matches of line end | nyamatongwe | 1 | -4/+4 | |
characters. | |||||
2005-02-04 | Avoid performing any actions when inserting a 0 length string. | nyamatongwe | 1 | -8/+12 | |
Added an undo action around setting line indenation so it is undone together. | |||||
2005-02-03 | Patch from Josiah Reynolds to prevent backwards searches from | nyamatongwe | 1 | -1/+3 | |
matching when the search string extended beyond the end of the search range. | |||||
2004-12-03 | Patch from Regis Vaquette to allow compilation for Windows CE. | nyamatongwe | 1 | -2/+2 | |
2004-09-27 | Fix for bug 1025190 where a whole word find would match on | nyamatongwe | 1 | -1/+1 | |
a word at the end of the file despite the word having an additional non-matching letter. | |||||
2004-08-09 | Moved ConvertLineEnds from ScintillaGTK to Document so that it can be used | nyamatongwe | 1 | -0/+31 | |
on other platforms. Changed name to TransformLineEnds as Document already had a ConvertLineEnds. | |||||
2004-08-03 | Patch from Gene Barry to avoid movement of markers when calling | nyamatongwe | 1 | -24/+23 | |
ConvertLineEnds. | |||||
2004-07-22 | New method SCI_FINDCOLUMN. | nyamatongwe | 1 | -1/+1 | |
2004-05-27 | Fixed behaviour of SetWordChars so characters can be removed | nyamatongwe | 1 | -3/+3 | |
from set of word characters. Implemented by setting any (alphanumeric or '_') characters not in argument to be punctuation. | |||||
2004-05-02 | Some comments and const modifiers from Philippe. | nyamatongwe | 1 | -3/+13 | |
2004-04-27 | Continuation Marker feature from Hans Eckardt. | nyamatongwe | 1 | -0/+1 | |
2004-01-14 | Fixed GetFoldParent to return -1 for all top level lines. | nyamatongwe | 1 | -1/+1 | |
2004-01-13 | When styling is performed outside a styleneeded event, | nyamatongwe | 1 | -4/+8 | |
increment the style clock so the layout cache is invalidated and so the styling is displayed. | |||||
2003-11-30 | Handle backslashed characters in replacement for regex. | nyamatongwe | 1 | -11/+55 | |
2003-11-04 | Simplified SetCharClasses and added SCI_SETCHARSDEFAULT. | nyamatongwe | 1 | -46/+2 | |
2003-11-01 | Patch from Roy Wood to allow changing the characters that are in the | nyamatongwe | 1 | -4/+49 | |
whitespace class. | |||||
2003-10-27 | Patches from Roy Wood: | nyamatongwe | 1 | -0/+34 | |
Word movement to end of word. Stuttered page movement. User defined keyboard accelerators on GTK+. | |||||
2003-09-28 | Hotspot improvements from Simon, including setting to | nyamatongwe | 1 | -3/+7 | |
limit hotspots to a single line. | |||||
2003-09-07 | Ensure word selection doesn't decompose DBCS characters. | nyamatongwe | 1 | -1/+1 | |
2003-09-02 | Fixed hang when searching backwards in UTF-8 file for string | nyamatongwe | 1 | -1/+1 | |
that is not present. | |||||
2003-07-26 | Fix to make backwards regular expression searches not skip over text. | nyamatongwe | 1 | -4/+4 | |
2003-07-26 | Patch from Yair Siegel to include the string being inserted in a | nyamatongwe | 1 | -1/+1 | |
SC_MOD_BEFOREINSERT notification. | |||||
2003-04-18 | New methods for finding the next or previous position taking multi byte | nyamatongwe | 1 | -24/+15 | |
characters into account. | |||||
2003-03-28 | Jakub's paragraph movement commands. | nyamatongwe | 1 | -1/+28 | |
2003-03-20 | Patch from Simon Steele to implement the hotspot style and associated | nyamatongwe | 1 | -0/+13 | |
notifications. | |||||
2003-03-06 | Avoiding infinite loop in regex search backwards for ^ | nyamatongwe | 1 | -1/+2 | |
2003-03-04 | Patch from Jakub to optionally implement more POSIX compatible regular | nyamatongwe | 1 | -11/+25 | |
expressions. \(..\) changes to (..) Fixes problem where find previous would not find earlier matches on same line. | |||||
2003-02-15 | Updating version numbers and copyright. | nyamatongwe | 1 | -1/+1 | |
2003-02-07 | WordPartLeft and WordPartRight made safe for non-ASCII. | nyamatongwe | 1 | -27/+56 | |
2003-01-18 | Removed special casing of '^' and '$' that tried to prevent hangs. This is | nyamatongwe | 1 | -12/+0 | |
now the containers responsibility. | |||||
2003-01-13 | Simplified and corrected code. | nyamatongwe | 1 | -51/+17 | |
IsDBCS no longer present as now must deal with 3 byte DBCS so use LenChar and DBCSCharLength. | |||||
2003-01-12 | Changes to make DBCS work on GTK+ and handle DBCS sequences longer than 2 bytes. | nyamatongwe | 1 | -21/+41 | |
2002-10-08 | Extra safety by anding mask into styles being set. | nyamatongwe | 1 | -6/+7 | |
2002-10-03 | Fixed infinite loop finding zero width match at end of range. | nyamatongwe | 1 | -1/+1 | |
2002-09-15 | Made backwards regex work better with more complex regular expressions. | nyamatongwe | 1 | -10/+3 | |
2002-09-15 | Made reverse regex searches work a bit. | nyamatongwe | 1 | -10/+28 | |