aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2007-07-07Typo.nyamatongwe1-6/+6
2007-07-07Allows the popup to be displayed below as long as it can fit on the monitornyamatongwe5-8/+71
the cursor is on rather than flipping up above the current point when near bottom of window. Implemented for GTK+ by John Ehresman. Partial Windows implementation #ifdefed out because it uses calls unavailable on Windows 95.
2007-07-06Added some users of Scintilla.nyamatongwe1-0/+9
2007-07-05lexer.errorlist.value.separate styles location and matched text separatelynyamatongwe3-5/+17
for Find in Files command.
2007-07-05Keywords work with characters > 0x79.nyamatongwe1-1/+1
2007-07-05Credits.nyamatongwe1-0/+3
2007-07-05Moved expansion and contraction of decorators from Editor to Documentnyamatongwe2-2/+5
as its slightly better modularity.
2007-07-04Use gtk_clipboard_set_can_store so copied text can be pasted afternyamatongwe1-18/+15
application exit.
2007-07-03Changed #ifdef PLAT_MACOSX to #if PLAT_MACOSX as PLAT_MACOSX is alwaysnyamatongwe1-4/+4
defined but is 0 on other platforms.
2007-07-02Scroll width tracking feature.nyamatongwe5-2/+38
2007-06-30Support for Abaqus language added by Sergio Lucato.nyamatongwe12-30/+335
2007-06-30Folding added by Sergio Lucato.nyamatongwe1-1/+118
2007-06-29Removed OS X specific WaitMouseMoved call since the generic code no longernyamatongwe3-76/+58
starts a drag unless the mouse moves.
2007-06-25Allow use of all 8 bits for lexical styles and LexHTML set to use 8 buts.nyamatongwe4-16/+16
2007-06-24Make the styles array variable length so it can be increased to 256 entriesnyamatongwe5-151/+153
without always taking 24K.
2007-06-23Fixed indentation.nyamatongwe1-21/+21
2007-06-23Fixes for bug #1732146, Armenian input on Windows by registering thenyamatongwe2-33/+46
Scintilla windows class as wide and using GetMessageW/DispatchMessageW in the SciTE event loop.
2007-06-22Credits.nyamatongwe1-0/+1
2007-06-22Folding added by instanton.nyamatongwe2-5/+303
2007-06-22Changed decorator style to just cover the decorator name.nyamatongwe1-3/+1
2007-06-20Fixed spelling, bad styles and date.nyamatongwe1-5/+5
2007-06-18Fixed date.nyamatongwe1-1/+1
2007-06-17More updates for 1.74.nyamatongwe1-0/+10
2007-06-17Made contributors list multi-column to use less space.nyamatongwe2-207/+269
Updated links and dates.
2007-06-17Added warning about limited regular expression support.nyamatongwe1-0/+4
2007-06-15Correctly measure widths of Latin1 characters that take 2 bytes in UTF-8.nyamatongwe1-6/+16
2007-06-15Ligatures.nyamatongwe1-0/+3
2007-06-15Updated download sizes.nyamatongwe1-2/+2
2007-06-15Updated for 1.74.nyamatongwe1-2/+11
2007-06-15Lua 5.1 and scripting additions.nyamatongwe1-0/+6
2007-06-15Documentation for indicator feature.nyamatongwe1-0/+21
2007-06-14Handle positioning for ligatures like fi and fl better. Pango treats thesenyamatongwe1-3/+13
as one cluster so the width of the cluster is spread amongst the bytes.
2007-06-14Fixing position cache size setting and documenting the position cache.nyamatongwe2-1/+9
2007-06-13periods were incorrectly classified as word characters (i.e., part of ↵mjroberts1-688/+688
identifiers); they no longer are
2007-06-12Added some basic colours so can see that styling is being done.nyamatongwe1-225/+255
2007-06-12Updated download sizes.nyamatongwe1-2/+2
2007-06-12Store OS X files in zips.nyamatongwe1-1/+1
2007-06-12Updated blurb.nyamatongwe1-2/+3
2007-06-12Added changed items for 1.74.nyamatongwe1-0/+75
2007-06-12Updates for 1.74nyamatongwe2-8/+14
2007-06-12Updating for 1.74 and credit.nyamatongwe3-5/+6
2007-06-12PL/M and Progress lexers added.nyamatongwe12-10/+597
2007-06-12Protection from calling GTK+ 2 functions on GTK+ 1.nyamatongwe1-0/+2
2007-06-12Fixed bug where setting the same range twice to the same value resultednyamatongwe1-7/+9
in rest of document being set.
2007-06-10Patch from Enrico Tröger to default caret blink rate to GTK+ defaults.nyamatongwe1-0/+18
2007-06-09Fixed bug when setting a range where the start of the range was already anyamatongwe1-3/+5
run start.
2007-06-07Patch from Kein-Hong Man fixes a CRLF glitch in LexPS.nyamatongwe1-1/+1
2007-06-04fix osx build for new positioncache codescaraveo4-1/+14
2007-06-04add missing main.nib for test containerscaraveo3-0/+294
2007-06-02Moving CharacterSet class into own header so can be used by morenyamatongwe3-58/+83
lexers. Updated LexCPP to match changes. Added use of CharacterSet to LexHTML.