aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2000-06-11Property set keys are now case sensitive.nyamatongwe1-12/+9
2000-06-11Made IsControlCharacter inline as Hans says this speeds it up.nyamatongwe1-1/+1
2000-06-08Added GetColumn that determines the column of a position.nyamatongwe3-0/+25
2000-06-08Added CreateDocument message and changed AddRefDoc and ReleaseDoc tonyamatongwe2-3/+9
AddRefDocument and ReleaseDocument.
2000-06-06Handle CDATA sections in XML.nyamatongwe1-1/+11
2000-05-27Changed operator bool in WordList to return false if WordList is empty.nyamatongwe3-51/+18
Many lexer changes from Philippe Lhoste. VB handles preprocessor and hex constants. C++ optionally leaves preprocessor state after the preprocessor command. HTML terminates incomplete entities earlier and marks them as bad attributes.
2000-05-23Fixed error when delete performed at end of document.nyamatongwe1-0/+2
2000-05-21Shift+Backspace is same as backspace.nyamatongwe1-0/+1
2000-05-20Fixed scope of variable.nyamatongwe2-1/+6
2000-05-20Lexer changes from Philippe.nyamatongwe3-0/+70
2000-05-15Support for different character sets for each style.nyamatongwe5-10/+34
2000-05-15Mod for here documents from Steffen Goeldner.nyamatongwe1-3/+5
2000-05-10Added underline attribute to styles.nyamatongwe5-7/+39
Added diagonal and strike-through indicators.
2000-05-08Added LaTeX lexer from Christian Obrecht.nyamatongwe1-0/+105
2000-05-08Fixed bug in deleting and changing case of rectangular selections.nyamatongwe1-3/+2
2000-05-07Scintilla.iface works now for SciMoz.nyamatongwe1-0/+1
makefile made nicer with $@ always used for output
2000-05-03Fixed problem with initial style not being picked up correctly since thenyamatongwe1-0/+4
lexer now starts styling from one line before where it is asked to.
2000-05-03Removed non-working messages.nyamatongwe1-26/+2
2000-05-02Small touch ups - removal of unused definitions, fixing documentation.nyamatongwe1-1/+1
2000-04-28Added zoom set and zoom get.nyamatongwe2-0/+9
2000-04-28Fixed unterminated string when using \n line terminators.nyamatongwe1-5/+5
2000-04-27Ctrl+Up and Ctrl+Down now keep the caret visible.nyamatongwe2-2/+19
2000-04-27Mad preprocessor continue when \ at end of line.nyamatongwe1-17/+20
Made unterminated string finish earlier.
2000-04-27Fixed bug when deleting lines.nyamatongwe1-7/+8
2000-04-23Fixing problems with fold information degrading when lines inserted andnyamatongwe6-34/+114
removed. New notifications before inserting and deleting text.
2000-04-23Ensured lexers do not style any more than they have been asked to.nyamatongwe5-10/+10
2000-04-21Changed font sizing to use more Windows compatible calculationnyamatongwe4-5/+14
Some unfinished work on fixing folding bugs.
2000-04-18Removed PropSet from Accessor interface.nyamatongwe8-7/+39
Indenting and horizontal scroll bar messages. Fixed undo grouping bug. Vertical scrolling can be performed with Ctrl+ arrows
2000-04-11Added smart indentation support code.nyamatongwe3-17/+31
2000-04-11Fixed handling folding in of triple quoted strings.nyamatongwe1-11/+24
Always lex the line before asked to ensure folding and tab timmy right.
2000-04-10Added get/set of separator character used when setting auto-completion list.nyamatongwe3-2/+27
Message for selecting an element of the autocompletion list.
2000-04-10Tab size and indent size can now be different.nyamatongwe3-19/+97
Indentation can contain either a mixture of tabs and spaces or only spaces.
2000-04-10Removed redundant subexpression in PropSet::GetInt.nyamatongwe1-1/+1
2000-04-10Death of Accessor.nyamatongwe3-166/+86
Birth of UniConversion.
2000-04-08Unicode keyboard input and dragging from Scintilla.nyamatongwe5-9/+17
Fixing warnings on GTK+ and uping warning level.
2000-04-08Warning squashing.nyamatongwe2-3/+2
Updated contributors list. Fixed lexing of MS warnings.
2000-04-07Changing code to ensure no warnings are produced by compilers.nyamatongwe18-101/+91
2000-04-07Accessor has a virtual destructor.nyamatongwe3-0/+7
2000-04-06Initial Unicode support code.nyamatongwe6-43/+100
2000-04-05Changed the lexer module objects to be globally visible (by removing 'static')nyamatongwe7-11/+11
so they can be explicitly referenced to force inclusion in a build.
2000-04-05Moved performance critical functionality back up into Accessor fromnyamatongwe3-32/+3
sub classes.
2000-04-04Initial version.nyamatongwe3-0/+402
2000-04-04Avoid lots of warnings from Borland C++.nyamatongwe13-69/+81
Changed name of interface class defined in Accessor.h to Accessor.
2000-04-04Split a Document based Accessor (DocumentAccessor) off fromnyamatongwe9-32/+35
the old accessor which is now called WindowAccessor. Accessor.h defines a common interface which is the type consumed by the lexers.
2000-04-03Added Mark's change to support changing the document from within thenyamatongwe2-4/+12
read-only notification.
2000-04-03Fixed problems with undo history not coalescing undo nodes correctly.nyamatongwe2-4/+11
2000-04-01Fixed warnings from Borland compiler.nyamatongwe7-13/+6
2000-03-31Fixed line ends.nyamatongwe6-2195/+2197
Fixed lastXChosen after Backspace or Ctrl+Backspace.
2000-03-30Fixed bugs in handling undo history.nyamatongwe5-2193/+2195
Fixed bugs with null fonts.
2000-03-25FIxed problem with first modification sometimes not looking dirty.nyamatongwe1-7/+8
Remonved unused 'PUNTUATION' lexclass.