aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
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.
2003-03-03Patch from Jakub Vrana to handle some out of bounds characters andnyamatongwe1-2/+2
repetitive pseudo-classes.
2003-03-01Fixed assertion in LaTeX lexing.nyamatongwe1-1/+1
2003-03-01Fixed DBCS handling.nyamatongwe1-1/+1
2003-03-01Cancel modes when focus lost.nyamatongwe1-1/+2
2003-02-26Ensure text used in user list selection notification is initialised to ""nyamatongwe1-0/+1
in case user presses enter when no item selected.
2003-02-23Patch from Jakub Vrana to avoid mouse debouncing on Windows where assigningnyamatongwe1-1/+1
a key to double click can result in two mouse clicks arriving with the same time.
2003-02-23Patch from Bruce Dodson for a variant on home and end keys for wrappednyamatongwe1-0/+64
mode that go to the start/end of the current display line. A second hit goes to the start/end of the document line.
2003-02-19Made operator= safer if misused.nyamatongwe1-0/+1
2003-02-17Upgraded keyword list descriptions from Brian Quinlan.nyamatongwe11-51/+106
2003-02-17Upgraded keyword list descriptions from Brian Quinlan.nyamatongwe2-3/+16
2003-02-17Upgraded keyword list descriptions from Brian Quinlan.nyamatongwe1-1/+7
2003-02-17Upgraded keyword list descriptions from Brian Quinlan.nyamatongwe1-14/+6
2003-02-17Upgraded keyword list descriptions from Brian Quinlan.nyamatongwe2-2/+16
2003-02-17Modes (autocompletion, calltip) are cancelled when changing buffers.nyamatongwe1-0/+1
2003-02-17Avoid infinite expansion of recursive definitions.nyamatongwe1-2/+6
2003-02-15INdentation fix.nyamatongwe1-2/+2
2003-02-15Updating version numbers and copyright.nyamatongwe4-4/+4
2003-02-14Cleaned up the fold margin code a bit.nyamatongwe1-9/+14
2003-02-14Fixed bug where autoscrolling off the end wrapped back to the beginning.nyamatongwe1-0/+3
2003-02-14May have fixed a problem with wrapping where an added character isnyamatongwe2-35/+36
initially in style 0 and so is narrower than its real styled width. So moved the wrapping until after the styling. Pixmap setup moved out of Paint into a separate method. Shortening of fold margin colour code.
2003-02-10Control of colours of fold margin.nyamatongwe3-169/+214
2003-02-09Join and Split lines methods.nyamatongwe2-20/+87
Method to copy selection end points to target.
2003-02-09Protected style fixed in several ways.nyamatongwe5-58/+108
Method to determine cheaply if protection turned on at all. Caret movement doesn't skip over text outside protected range. Methods for deciding if a range or the selection contains protected text. Several deletion commands perform no action if they would delete protected text. Two phase drawing no longer draws invisible text.
2003-02-07WordPartLeft and WordPartRight made safe for non-ASCII.nyamatongwe1-27/+56
2003-02-04Patch from Mauritius Thinnes to set the type separator for autocompletionnyamatongwe1-0/+7
images.
2003-02-02Hoisted drawing of EOL into method so can avoid overwriting lastnyamatongwe2-28/+48
character in two phase mode.