aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
AgeCommit message (Collapse)AuthorFilesLines
2001-05-14Merged patch from Michele to add ability for tab key to perform indent whennyamatongwe2-0/+16
selection is empty and within indentation and for backspace to unindent in the same circumstances.
2001-05-01External lexer feature added by Simon allows lexers to be housed in DLLs withnyamatongwe2-0/+4
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-29Addition of new target methods - versions of ReplaceTarget that take countednyamatongwe2-0/+24
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 therenyamatongwe2-0/+8
are no longer any values that start with the typed text.
2001-04-24Ruby support.nyamatongwe2-0/+2
2001-04-20Alexey added Lisp support.nyamatongwe2-0/+19
2001-04-16Changed spelling mistake URIsDropped -> URIDropped.nyamatongwe2-2/+2
2001-04-14Removed SC_UNDOCOLLECT_* enumeration which was deprecated in 1.27.nyamatongwe1-4/+0
2001-04-14Documented new messages and some old constants.nyamatongwe2-4/+12
2001-04-13Added a string name to each lexer.nyamatongwe1-2/+3
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-5/+26
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-11Added SetMultiple and ToString methods.nyamatongwe1-3/+5
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-11Patch from Philippe to make 'rem' work in batch files.nyamatongwe2-0/+39
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-09Tahir added Ada support.nyamatongwe2-0/+21
Simplified header dependencies of the Lexers in makefiles.
2001-04-08Removed old unused code from SString.nyamatongwe1-94/+83
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-05Replace target functionality to make find and replace operations fasternyamatongwe1-1/+6
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-0/+14
SetTargetEnd, and ReplaceTarget.
2001-04-04Moved to public domain regular expresion implementation.nyamatongwe1-138/+0
2001-03-31Added caret line feature.nyamatongwe2-0/+16
2001-03-31Support for URI drag and drop on GTK+.nyamatongwe2-0/+2
2001-03-30Added a contains method so it is easy to see if a string contains anyamatongwe1-0/+6
particular character.
2001-03-27Documented that SearchNext and SearchPrev do not ensure the selection isnyamatongwe1-0/+2
visible.
2001-03-22Patch from James Larcombe.nyamatongwe2-0/+12
Functions to delete from caret to end of line and from start of line to caret. Mode for caret policy to be even handed with respect to left and right margins rather than favouring display to the left.
2001-03-21Added enumeration interface from Laurent.nyamatongwe1-0/+4
2001-03-02Initial version.nyamatongwe1-0/+2
2001-03-02Update from Steve to PHP in the HTML lexer.nyamatongwe2-2/+2
2001-02-28Added operator== to PRectangle.nyamatongwe1-9/+13
2001-02-26WordList[] Returns non const as that made some other code simpler.nyamatongwe1-1/+1
2001-02-25Added appendwithseparator method as this is common and there is extra messnyamatongwe1-9/+24
without it.
2001-02-24Added a parameter to GetNearestwords to allow use of another separator charnyamatongwe1-1/+2
as well as '(' and ':'.
2001-02-24Updated documentation comments from Philippe.nyamatongwe10-56/+106
2001-02-18Changed iMessage parameter of scintilla_send_message from int to unsignednyamatongwe1-1/+1
int to be compatible with other message functions.
2001-02-17Turned off warning 4710 for Microsoft C++ compiler indicating inline methodnyamatongwe1-1/+1
not inlined.
2001-02-17Made warning in ScintillaWidget.h work better with GCC.nyamatongwe1-1/+1
2001-02-17If ScintillaWidget.h included without Scintilla.h already included displaynyamatongwe1-0/+11
a warning message and #include "Scintilla.h".
2001-02-17Changed header order to work on GTK+.nyamatongwe1-3/+0
Scintilla.h must be before ScintillaWidget.h now.
2001-02-17Defining sptr_t and uptr_t to be integral types large enough to containnyamatongwe2-4/+13
pointers to allow portability to 64 bit platforms.
2001-02-09New lexclasses for Avenue from Alexey.nyamatongwe2-1/+23
2001-02-06Removed macro substitution of case insensitive string comparison functionsnyamatongwe1-5/+3
and declared new functions CompareCaseInsensitive and CompareNCaseInsensitive implemented in Scintilla.
2001-02-05Patch from John to make GTK+ version build on Win32.nyamatongwe1-0/+3
Modified by me to avoid pointless warnings and print error message if try to build with Borland C++.
2001-02-01Added lexer for Avenue.nyamatongwe2-41/+43
Trailing spaces removed from a lot of lines.
2001-01-29Fiddled with caret and visible policies.nyamatongwe2-6/+6
2001-01-28Updating copyright notices for 2001.nyamatongwe9-9/+9
2001-01-27Much changed ScintillaGTK widget code that draws directly onto thenyamatongwe1-2/+2
Scintilla widget with no wDraw drawing area. Signals handled directly through callbacks.
2001-01-25Patch from Philippe, containing comments and a fix to SString for emptynyamatongwe2-20/+68
strings.
2001-01-23New function isspacechar to avoid bugs when character >= 0x80.nyamatongwe1-3/+8
2001-01-06Patch from Steffen to separate long quote into qq, qz, qr, and qw states.nyamatongwe2-0/+8
2001-01-04Patch from Philippe to granularise append allocations and remove unusednyamatongwe1-90/+84
stuff.
2001-01-02From Philippe: SString::clear and SCE_C_COMMENTLINEDOC.nyamatongwe3-0/+8
2000-12-27Put VISIBLE_CENTER back in.nyamatongwe2-1/+2