aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2000-09-06Removed a couple of completed items from the TODO list and added a couplenyamatongwe1-0/+1
of bugs. Bug wuth not redrawing caret sometimes when performing undo fixed.
2000-09-06Fix from Tahir Karaca for LineVector::MergeMarkers.nyamatongwe1-58/+65
2000-09-06Dots inside identirifers are now in the operator lexical class.nyamatongwe1-0/+7
Added markus Gritsch to credits list.
2000-09-05Fixed indentation.nyamatongwe1-6/+6
2000-09-04Added SCFIND_WORDSTART.nyamatongwe3-23/+36
2000-09-04Small tweak from Steffen.nyamatongwe1-2/+3
2000-09-01Fix from Ferda to make the binary search work for autocompletion andnyamatongwe1-14/+50
calltips.
2000-08-31Changes from Ferda to put the sorting and searching here rather than innyamatongwe1-4/+267
SciTEBase.
2000-08-31Added some fixes from Steffen to keep ch and chNext synchronised.nyamatongwe1-3/+3
2000-08-30Perl error format supported.nyamatongwe1-7/+13
SCE_ERR_* symbols replace inline constants.
2000-08-29Merged Jan's changes to SString. Has a size field and allows C++ standardnyamatongwe1-0/+2
library style iterator access.
2000-08-29Initial version.nyamatongwe1-0/+1181
2000-08-27Fixed sorting to use qsort by implementing a string comparisonnyamatongwe1-32/+6
function rather than passing strcmp in directly.
2000-08-25Patches from Eric Prmislow and Steffen Goeldner to fix up here docsnyamatongwe1-5/+32
some quoting and pos handling.
2000-08-25Patch from Steve for handling comments in PHP.nyamatongwe1-36/+26
2000-08-22Added C# support to LexCPP with verbatime string literals and @ quotednyamatongwe1-1/+18
keywords handled correctly.
2000-08-22Added SCE_H_VALUE class for HTML for unquoted values.nyamatongwe3-7/+44
2000-08-21Merging patches from Ferda and Jan.nyamatongwe3-8/+41
Autocompletion flags for ignoring case and automatically choosing single items. WM_PAINT handling with passed HDC. Events in Scintilla.iface.
2000-08-18Added in most of Ferdinand Prantl's changes except for regular expressionnyamatongwe8-26/+141
search. Some bits not quite done as well.
2000-08-16Invisible text.nyamatongwe5-370/+422
Fixes to ensure long lines do not overflow buffers.
2000-08-03Fixes from Philippe for preprocessor and HTML comments and one from Stevenyamatongwe3-24/+39
for HTML comments.
2000-07-29Patch to PHP lexer to handle multiple line strings.nyamatongwe1-9/+9
2000-07-26Avoided warning on GTK+ because DBCS not supported.nyamatongwe1-6/+7
2000-07-26Added history entry for 1.30.nyamatongwe1-3/+9
Included Ralf's soft tab patch.
2000-07-24Added SCI_CANPASTE.nyamatongwe1-0/+1
2000-07-23Changed SCI_POSITIONFROMPOINT to take x,y parameters rather than a pointernyamatongwe1-6/+2
to a POINT structure.
2000-07-22Changed key codes to not overlap printing keys.nyamatongwe2-8/+13
Mved the #ifs around DBCS support to avoid warnings on GTK+.
2000-07-22Updates to make new API work on both GTK+ and Win32.nyamatongwe2-12/+13
2000-07-21Provide alternative symbols for all features defined in WinDefs.h to allownyamatongwe8-120/+205
for eventual removal of WinDefs.h.
2000-07-19Speed ups by Steve.nyamatongwe1-24/+28
2000-07-19More Steve updates - allows folding of embedded Python.nyamatongwe1-26/+76
2000-07-18Updates from Steve to make Python strings and incremental styling work.nyamatongwe1-3/+21
2000-07-18Added functions to clear all styling and contraction.nyamatongwe8-660/+258
2000-07-15Fixed problem with CancelModes killing drag and drop by setting emptynyamatongwe3-5/+4
selection. On GTK+ double click GTK+ events are ignored as this led to prblems in primary selection code.
2000-07-14Added PositionFromPoint API function.nyamatongwe1-0/+7
2000-07-13Showing selection in grey when its not the primary selection on GTK+.nyamatongwe4-4/+17
2000-07-12Added John's autocompletion changes and fiddled to make autocompletion listnyamatongwe6-18/+26
size better.
2000-07-12Autocompletion cancel at start position available to API.nyamatongwe2-1/+8
Inverted default value to be compatible with older code.
2000-07-12John's changes to autocompletion.nyamatongwe4-9/+21
2000-07-10Dropped template as only ever instantiated for int and this allowsnyamatongwe2-10/+9
Scintilla to be template free.
2000-07-08Included Steve Lhomme's PHP updates for the HTML lexer.nyamatongwe1-210/+532
2000-07-07Included string.hnyamatongwe2-0/+2
2000-07-07Made PropSet into a hash table.nyamatongwe1-90/+86
2000-07-07Bug fix to indicators.nyamatongwe1-1/+1
2000-07-06Optimisations.nyamatongwe4-50/+98
2000-07-05Fixed BoundsChecker warnings including some leaks.nyamatongwe5-4/+19
2000-07-05Changed print colour mode to have black on white as well as invert lightnyamatongwe2-9/+11
states.
2000-07-03Changed MAX_PATH to 1024 to make GTK+ version compile.nyamatongwe1-2/+2
2000-07-03Added 'if' and 'import' statements to properties files.nyamatongwe1-14/+25
2000-07-01Making Drawline less context dependent by moving state from Editor tonyamatongwe4-25/+37
LineLayout and ViewStyle. Helps avoid attributes leaking into printing.