aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2001-05-21Avoided some warnings.nyamatongwe2-1/+3
2001-05-20Removed uncounted version of ReplaceTarget to allownyamatongwe1-5/+1
replace strings to contain nulls.
2001-05-19Abstracted out code that is common to many lexers into LexContext class.nyamatongwe1-102/+100
2001-05-18Initial version.nyamatongwe1-0/+286
2001-05-14Merged patch from Michele to add ability for tab key to perform indent whennyamatongwe3-71/+129
selection is empty and within indentation and for backspace to unindent in the same circumstances.
2001-05-05Patch from Steve Lhomme to prevent %> from displaying as ASP if not in ASPnyamatongwe1-8/+10
mode. Setting up scriptLanguage more often for more consistent results.
2001-05-01External lexer feature added by Simon allows lexers to be housed in DLLs withnyamatongwe3-4/+10
a .lexer extension which are automatically loaded at startup. Minor fix to IME support in ScintillaWin.cxx to deal with current mingw headers.
2001-04-30Forwarding state of Alt key to key map and using the returned consumednyamatongwe1-0/+4
parameter to see whether to call DefWindowProc. Added word part movement keys to key map even though they conflict with entering characters by number as that can be forced to work by entering Num Lock mode. WM_CHAR control key messages can go into the buffer now if they arrived from being entered by number by detecting when they were not consumed by key down processing.
2001-04-30When doing regexp searches, start position is moved on from end of linenyamatongwe1-3/+6
or between lines. The last character of the search is found using length in case there are any nulls in the string.
2001-04-29Addition of new target methods - versions of ReplaceTarget that take countednyamatongwe6-76/+154
strings to allow for nulls, SearchInTarget and Get/SetSearchFlags to use a series of calls rather than a structure. Handling of \000 in search and replace. Handling of /escapes within character ranges of regular expressions. Some handling of bare ^ and $ regular expressions.
2001-04-27Feature from Stephan to allow autocompletion to stay open even when therenyamatongwe3-10/+20
are no longer any values that start with the typed text.
2001-04-25Changed allocation growth factor to double when it gets less than a sixth ofnyamatongwe1-1/+1
the buffer size instead of a quarter as this means worst case wasted space of one quarter rather than one third at little cost in time.
2001-04-25Changed buffer growth strategy to be proportional to current size by doublingnyamatongwe2-16/+20
gowth size whenever the buffer size is more than 4 times the buffer size. Reduced load of 10 Meg file from 12 to 4 seconds and 30 Meg file from 1000 to 21 seconds. Reformatting.
2001-04-24Initial version.nyamatongwe2-0/+378
2001-04-23Fixed bug that treated some operators in ASP VBScript as if they were innyamatongwe1-1/+1
client side VBScript.
2001-04-20Removed DEBUG code that failed to compile on GTK+.nyamatongwe1-78/+3
2001-04-20Added Lisp lexer to makefiles and simplified LexLisp.cxx.nyamatongwe1-15/+2
2001-04-20Simplified because of warnings.nyamatongwe1-3/+2
2001-04-20Initial version by Alexey.nyamatongwe1-0/+208
2001-04-20Alexey added folding for Lua.nyamatongwe1-232/+205
2001-04-14Added implementations for SCI_GETTARGETSTART and SCI_GETTARGETEND.nyamatongwe1-0/+6
2001-04-13Fixed const incorrect code.nyamatongwe1-1/+1
2001-04-13Removed some dead commented code.nyamatongwe3-5/+0
2001-04-13Check for fold flag and don't call Fold method if not set as this avoidsnyamatongwe1-2/+4
checking in the Fold method.
2001-04-13Removed redundant Flush and check for fol as they are done by caller.nyamatongwe1-61/+55
2001-04-13Separated folding code into folding function.nyamatongwe1-34/+57
2001-04-13Added a string name to each lexer.nyamatongwe11-17/+17
Made it possible for LexerModule to be subclassed so that its Lex and Fold methods can be specialised to work across DLL boundaries.
2001-04-13Start of new lexer infrastructure.nyamatongwe4-16/+85
Lexers can have a fold function as well as a lexer function. They can be identified by string name as well as an integer ID and may ask to be automatically assigned that ID.
2001-04-13Separated folding from lexing.nyamatongwe1-42/+63
2001-04-13Added URL to find original code to comments.nyamatongwe1-0/+4
2001-04-12Fix from Philippe to a rectangular selection staing active after the usernyamatongwe1-1/+2
starts navigating with cursor keys.
2001-04-12Changed modification from setting a fold level to indicate that the markernyamatongwe1-1/+2
column should change.
2001-04-11Added SetMultiple and ToString methods.nyamatongwe1-22/+69
Made argument to single argument Set be const. Added length arguments to several methds so they can be used on buffers without modifying the buffers to include \0 characters.
2001-04-11Avoided warnings on VC++ Pro.nyamatongwe1-4/+2
2001-04-11Patch from Philippe to make 'rem' work in batch files.nyamatongwe1-133/+131
Moved lex class values from LexOthers.cxx to Scintilla.iface. Added recognition of diff output to errorlist lexer so can see in output pane of SciTE.
2001-04-10Removed dead code.nyamatongwe1-1/+0
2001-04-10Calltip size fixing and listbox border tweaking.nyamatongwe4-71/+77
2001-04-10Turn off caret line when caret is turned off such as when don't have focus.nyamatongwe1-1/+1
2001-04-09Philippe provided fix for EM_GETLINE and reformatting.nyamatongwe3-122/+167
2001-04-09Initial version.nyamatongwe1-0/+199
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.