aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2001-04-08Removed old unused code from SString.nyamatongwe1-50/+8
Added method to change resize behaviour. Added detach() method to take over ownership of buffer. Cleaned up naming. Removed WordAccumulator class from PropSet as SString can do it all now.
2001-04-06Made regular expression searching work on a line by line basis, made ^ andnyamatongwe3-23/+67
$ work, made [set] work, and added a case insensitive option.
2001-04-05Replace target functionality to make find and replace operations fasternyamatongwe7-33/+140
by diminishing screen updates and allow for \d patterns in the replacement text.
2001-04-04Target API for changing document withot visible changes: SetTargetStart,nyamatongwe2-4/+32
SetTargetEnd, and ReplaceTarget.
2001-04-04Moved to public domain regular expresion implementation.nyamatongwe5-1214/+934
2001-04-04Avoid compiler and BoundsChecker warnings.nyamatongwe3-7/+31
2001-04-03Regular expression find support.nyamatongwe3-65/+124
2001-04-03Fixed read of uninitialised memory when searching for '=' in propertiesnyamatongwe1-1/+2
files.
2001-03-31Added caret line feature.nyamatongwe4-13/+41
2001-03-30Undo coalescing now allows deletes of size 1 or 2 to be coalesced.nyamatongwe2-100/+100
Document.cxx reformatted.
2001-03-30Fixed bug when single character deletions were being coalesced even thoughnyamatongwe1-12/+15
they were not adjacent.
2001-03-28Changed handling of the end of stream comments which was perturbed bynyamatongwe1-4/+6
changing way end of line was handled leading to shorter segments.
2001-03-28Patch from Stephan to prevent double recording of newlines in macros.nyamatongwe1-4/+4
2001-03-23Fixed CPP lexer to work correctly when the '{' starting a fold sectionnyamatongwe1-41/+52
that is folded is deleted. This leads to the fold being unfolded which leads to reentrant styling which failed.
2001-03-22Patch from James Larcombe to add Ctrl+Shift+BackSpace and Ctrl+Shift+Deletenyamatongwe1-0/+2
2001-03-22Patch from James Larcombe for SCI_DELLINERIGHT, SCI_DELLINELEFT andnyamatongwe1-1/+20
CARET_XEVEN.
2001-03-21Enumeration interface from Laurent.nyamatongwe1-0/+40
2001-03-02Update from Steve to make string style terminate after a variable.nyamatongwe1-0/+1
2001-03-02Update from Steve to PHP in the HTML lexer.nyamatongwe1-3/+60
2001-03-02Removed use of Platform::SendScintilla as that is indirect was of talkingnyamatongwe1-5/+4
to this - diret way should be used instead.
2001-02-27Option fold.html added.nyamatongwe1-0/+4
2001-02-27Patch from Philippe to regularise comments.nyamatongwe13-149/+154
2001-02-25Increased allocation chunk size for GetNearestWords as it was slow.nyamatongwe1-1/+1
2001-02-24Patch from Jan to allow folding multi-line C++ comments.nyamatongwe1-5/+14
2001-02-24Patch from Jan to avoid warnings.nyamatongwe1-0/+4
2001-02-24Patch from Jan Hercek to fix folding by using the display line rather thannyamatongwe2-12/+13
the document line when evaluating the visibility policy.
2001-02-24Added support for using ':' and another character to end identifiers innyamatongwe1-141/+105
.api files as well as '('. Simplified GetNearestWords. Changed to using C++ allocation always rather than malloc and free.
2001-02-24Fixed font leak.nyamatongwe1-0/+1
2001-02-24Updated documentation comments from Philippe.nyamatongwe3-8/+22
2001-02-24Updated documentation comments from Philippe.nyamatongwe1-1/+4
2001-02-24Updated documentation comments from Philippe.nyamatongwe5-8/+24
2001-02-24Updated documentation comments from Philippe.nyamatongwe1-13/+27
2001-02-24Updated documentation comments from Philippe.nyamatongwe29-138/+269
2001-02-23Patch from Philippe to clean up the code a lot.nyamatongwe1-67/+136
2001-02-23Patch from Steve to change name of option for folds owning following blanknyamatongwe1-2/+2
lines so they disppear when folded to fold.compact.
2001-02-22Patch from Steve makes folding work better on multi-line tags and CDATAs.nyamatongwe1-21/+48
2001-02-21Patch from Steve to support folding of HTML.nyamatongwe1-17/+56
2001-02-21Patch from Philippe to improve batch file lexer.nyamatongwe1-48/+64
2001-02-17Fixed some warnings from Borland.nyamatongwe2-3/+1
2001-02-17Defining sptr_t and uptr_t to be integral types large enough to containnyamatongwe4-5/+5
pointers to allow portability to 64 bit platforms.
2001-02-16Patch from Mark so context menu items take account of whether is writable.nyamatongwe1-5/+6
2001-02-09New version from Alexey. Diverged much more from LexCPP code.nyamatongwe1-57/+79
2001-02-08Setting operators in ASP VBScript to correct lexical class.nyamatongwe1-1/+1
2001-02-07GetWild does file extension comparison case insensitively.nyamatongwe1-3/+4
2001-02-06Made SCI_CANPASTE and EM_CANPASTE work correctly usingnyamatongwe2-1/+6
IsClipboardFormatAvailable on Windows.
2001-02-06Removed macro substitution of case insensitive string comparison functionsnyamatongwe1-30/+50
and declared new functions CompareCaseInsensitive and CompareNCaseInsensitive implemented in Scintilla.
2001-02-05Patch from John to make GTK+ version build on Win32.nyamatongwe1-5/+23
Modified by me to avoid pointless warnings and print error message if try to build with Borland C++.
2001-02-03Refactored detection of self reference within variable to separate functionnyamatongwe1-11/+20
and added a comment.
2001-02-03Fixed infinite recursion when a value contains a reference to itself.nyamatongwe1-0/+10
2001-02-02Used GetExpanded rather than Get when filling in variable file selectors sonyamatongwe1-2/+2
they can be made up of other variables.