aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2007-04-25Made fontNames array grow when needed. Fixes bug 1339845 andnyamatongwe2-1/+17
lessens memory use.
2007-04-23Added setting to allow each indicator to be drawn either under ornyamatongwe3-2/+16
over text.
2007-04-23Changed to use new indicator API.nyamatongwe1-12/+22
2007-04-21Fixed bug when using SCI_LINETRANSPOSE on a blank line.nyamatongwe1-7/+6
2007-04-21Bug 1704800 fixed dealing with strings and chars like "something\\".nyamatongwe1-26/+26
2007-04-19Optimized indicator changing with separate SC_MOD_CHANGEINDICATORnyamatongwe6-30/+40
notification flag.
2007-04-19All Unicode planes supported, not just the Basic Multilingual Plane.nyamatongwe3-16/+61
2007-04-16Added support for GAP language from Istvan Szollosi.nyamatongwe2-0/+261
2007-04-07More decoration code, with modifications reported from document to viewsnyamatongwe10-12/+46
although this isn't optimal. Some checking for null changes. Messages documented. Methods for changing indicators in Accessor so can be used by lexers.
2007-04-05New files that implement decorations.nyamatongwe4-0/+456
2007-04-05Implemented decorations which are extended indicators.nyamatongwe9-37/+140
2007-03-29Incorporated cmake support.nyamatongwe2-0/+454
2007-03-27Removed duplicate code.nyamatongwe1-2/+0
2007-03-23Patch from Jos van der Zande to fix bug with + following anyamatongwe1-0/+3
string getting the wrong color.
2007-03-21When deleting all contents of a SplitVector, free the memory.nyamatongwe1-6/+12
2007-03-19Undid last change as there was no example case that demonstratednyamatongwe1-2/+0
reading of uninitialized values and the buffer being initialized was quite large.
2007-03-16Using extra variable to simplify expressions.nyamatongwe1-2/+3
2007-03-16Added "case" to fix for bug #1681928.nyamatongwe1-5/+5
2007-03-16Made folding for MSSQL work case insensitively.nyamatongwe1-3/+3
Fixes bug #1681928.
2007-03-14Fix bug #1680012 by not styling past range when PHP heredocnyamatongwe1-1/+1
end encountered.
2007-03-11Ensure initialisation of nfa member to make BoundsChecker happy.nyamatongwe1-0/+2
2007-03-07Edge line drawn under characters in two phase draw mode.nyamatongwe1-7/+7
Fixes bug #1225548.
2007-02-28Fix bug #1670851 by checking that not trying to style backwards.nyamatongwe1-1/+3
2007-02-28Changed ColourTo to assert if asked to style backwards.nyamatongwe1-1/+2
In release builds this is ignored instead.
2007-02-26Change finding near words in a WordList to first search for thenyamatongwe1-3/+6
character passed in and only iof not found search for the default '('.
2007-02-25Fix for bug #1668409, Minor makefile lexer issues.nyamatongwe1-7/+23
Supports ":=" operator and avoids processing ":" or "=" on command lines.
2007-02-25Fixed bug #1656532 where background colour of marker notnyamatongwe1-1/+2
showing behind wrap indicator.
2007-02-23Bug #1656532. Changed to use foreground of STYLE_DEFAULT butnyamatongwe1-3/+7
allow whitespace foreground to override.
2007-02-22Account for addition of spaces when joining lines.nyamatongwe1-0/+1
Fixes bug #1665791.
2007-02-22Avoid reentrant painting when scroll is performed in anyamatongwe1-1/+1
notification by queueing a redraw.
2007-02-21fix Borland compiler warningsmjroberts1-46/+46
2007-02-21fixed the lexer to handle many tads 3 syntax constructs better;mjroberts1-16/+83
fixed some folding problems; added a separate 'brace' style
2007-02-20Fix for bug #1663839: stuttered page down doesn't worknyamatongwe1-1/+4
if lines are wrapped.
2007-02-18Modification to printing avoids extra space between line numbers and textnyamatongwe1-7/+8
due to counting the width of the screen line numbers as well as the print line numbers.
2007-02-13Optimisation that avoids double check for line ends.nyamatongwe1-2/+2
2007-02-08Fix to bug #1653607.nyamatongwe1-22/+14
2007-02-04Patch from Chris Rickard adds get calls for many style settings.nyamatongwe1-0/+78
2007-02-01Bug #1649350. Ensure EXT_LEXER_DECL defined on all platforms.nyamatongwe1-2/+2
2007-01-26Separated reentrance check into text modification and styling modification ↵nyamatongwe2-21/+23
flags to allow styling to be performed within a text modification
2007-01-26Avoid trying to style when inside a modification as that styling will be ↵nyamatongwe2-4/+3
thrown away.
2007-01-24Set the modifiers field on the SCN_DOUBLECLICK notification so the ↵nyamatongwe2-3/+5
SCI_SHIFT, SCI_CTRL, and SCI_ALT bits may be set.
2007-01-22Patch from bug #1588699 to require space before -letter test word.nyamatongwe1-1/+2
2007-01-16Patch from Philippe Lhoste to regular expressions adds \d, \D, \s, \S, \w, ↵nyamatongwe2-108/+298
\W, and \xHH.
2007-01-03Rely on SplitVector::ValueAt allowing out-of-range access to simplify ↵nyamatongwe1-20/+8
calling code.
2007-01-03Added range check for InsertValue and some more assertions.nyamatongwe1-0/+8
2007-01-03Removed "NoBox" name as it was being copied by others and is now meaningless.nyamatongwe1-7/+2
2007-01-02Separated the cell buffer into substance and style buffers.nyamatongwe8-148/+125
2007-01-01Major change to CellBuffer class with addition of Partitioning class and ↵nyamatongwe8-383/+603
SplitVector template. Inserting and deleting lines are made more efficient by lessening the amount of per line information copied. Marker data is only allocated for each line if markers are added.
2006-12-31Fixed folding slowness when pasting a large amount of text on an empty line. ↵nyamatongwe2-2/+2
Does not propagate wgitespace flag onto new lines which made them subordinate. Setting a line visible in contraction state now only invalidates the data structure if line currently not visible.
2006-12-28Patch from Jason Haslam to optionally extend selection colour to left side whennyamatongwe3-0/+26
end of line selected.