aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2003-07-21Patch from Hiroshi-Saito to allow strings to use ' delimiters.nyamatongwe1-3/+13
2003-07-21Fixed unused parameter warning.nyamatongwe1-1/+1
2003-07-21Fixed warning from Borland.nyamatongwe1-2/+2
2003-07-21Added PostScript lexer from Nigel Hathaway.nyamatongwe2-0/+344
2003-07-21Fixed bug where assertions may not have been appearing when they should.nyamatongwe1-2/+2
2003-05-14INitial version.nyamatongwe1-0/+270
2003-05-14EScript lexer added.nyamatongwe1-0/+1
2003-05-14Moved lmNull into LexOthers.cxx as there was a report that the currentnyamatongwe2-17/+17
location trips a bug in MSVC 7.1.
2003-05-11Clipping copy range into document.nyamatongwe1-0/+2
2003-05-11Ensure text copied to clipboard is terminated at correct length.nyamatongwe1-10/+5
2003-05-11Addition of CopyText, CopyRange, and LineCopy.nyamatongwe3-8/+59
2003-05-09Added Lout lexer by Kein-Hong Man.nyamatongwe1-0/+208
2003-05-09Added Lout lexer by Kein-Hong Man.nyamatongwe1-0/+1
2003-04-30More protection against recursive property settings.nyamatongwe1-16/+16
2003-04-29Removed hack that did not set the scroll bar when changing documents whichnyamatongwe1-4/+1
worked around a GTK+ 2 problem that is now fixed by using an extra window for the text.
2003-04-29Made Redraw only redraw the text area, not the scrollbars.nyamatongwe1-1/+3
2003-04-29Made DisplayCursor virtual so could be overridden by GTK+ platform code.nyamatongwe1-1/+1
2003-04-21New folding scheme that allows "} else {" to be a fold header.nyamatongwe2-251/+43
2003-04-18New methods for finding the next or previous position taking multi bytenyamatongwe2-24/+21
characters into account.
2003-04-18Added line end at end of file.nyamatongwe1-8/+8
2003-04-18Initial portable version.nyamatongwe1-0/+95
2003-04-18Initial portable version.nyamatongwe1-0/+256
2003-04-18Batch from Biswapesh to add another keyword set for the cpp lexer.nyamatongwe1-0/+4
2003-04-13Avoid resetting scroll bars when changing documents as that leads tonyamatongwe1-1/+4
synchronous painting on GTK+ before completely set up for new document.
2003-04-10Fixed hang where '#' was last non-whitepsace in file.nyamatongwe1-1/+1
2003-04-08Fixed warning in debug code.nyamatongwe1-1/+1
2003-04-07Fix bug on GTK+ 2.x where synchronous repaint causes currentPos to be usednyamatongwe1-1/+8
before it is reset.
2003-04-05Tweaked arrow position slightly.nyamatongwe1-4/+4
2003-04-05Moved calltip showing into method.nyamatongwe2-25/+27
2003-04-05Positioning window so that function name lines up with editor window evennyamatongwe2-11/+19
when there are up and down arrows. Repositioned arrows.
2003-04-03CallTip can display up and down arrows and clicks are reported tonyamatongwe4-43/+147
container. Calltip can be replaced while visible rather than needing a cancel and recreation to minimize flashing.
2003-03-30More selective about GCC message format, expecting number after firstnyamatongwe1-9/+14
':' unless ':' followed by '/' or '\' as used on Windows for paths.
2003-03-28Jakub's paragraph movement commands.nyamatongwe4-1/+54
2003-03-28Made more picky about digits.nyamatongwe1-11/+19
2003-03-27Fixed up problem where multiple hot spots highlighted at once.nyamatongwe1-1/+12
Made line splitting work by taking account of the two bytes needed for a line end in Windows mode. Made line joining add a space between each line if there was not one anyway.
2003-03-22Allow tab as well as space after ':' in GCC error messages.nyamatongwe1-1/+1
2003-03-22Moved invalidation code around a bit to try to optimize on GTK+ 2.x.nyamatongwe1-2/+2
2003-03-22Tightened up recognition of GCC, Microsoft and Perl error lines.nyamatongwe1-8/+16
2003-03-21Detect patterns too long in regular expression search.nyamatongwe1-0/+6
2003-03-20Patch from Simon Steele to implement the hotspot style and associatednyamatongwe8-25/+199
notifications.
2003-03-18Fixed problem with overstrike mode typing over the last character of thenyamatongwe1-1/+1
file inserted before last character instead.
2003-03-17POV-Ray support.nyamatongwe1-1/+1
2003-03-17Added POV-Ray lexer by Steven te Brinke.nyamatongwe2-0/+223
2003-03-12Patch from Pedro Guerreiro for decoding error messages from Lahey andnyamatongwe1-2/+17
Intel Fortran compilaers.
2003-03-10Allow modification of text and highlight colours for calltips.nyamatongwe1-0/+10
2003-03-09Added Pango text display support to GTK+ platform.nyamatongwe3-54/+59
Added WindowID parameter to all Surface initialisation methods as Pango requires a window to determine the context used for text functions. AutoSurface changed because of above to take an Editor* argument so it can then discover the code page and window.
2003-03-06Avoiding infinite loop in regex search backwards for ^nyamatongwe1-1/+2
2003-03-04Patch from Jakub to add quoted strings to CSS lexer.nyamatongwe1-9/+17
2003-03-04Patch from Jakub to optionally implement more POSIX compatible regularnyamatongwe5-38/+82
expressions. \(..\) changes to (..) Fixes problem where find previous would not find earlier matches on same line.
2003-03-04Improved detection of complex error lines to have less false hits and sonyamatongwe1-33/+50
the code is simpler.