aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2010-09-24Added SCI_CONTRACTEDFOLDNEXT as a way to find contracted fold headers ↵nyamatongwe7-1/+49
efficiently.
2010-09-23Fix for bug #3073481, in MouseLeave set ptMouseLast to (-1,-1) so will not sendnyamatongwe1-1/+6
dwell start on timer. Send dwell end for mouse leave.
2010-09-16Making methods const when they should be.nyamatongwe2-4/+4
2010-09-16Make internal methods private.nyamatongwe1-4/+4
2010-09-15Fix for bug #3065912 Fail to Search up when code.page = 936nyamatongwe1-1/+1
2010-09-15Fix for bug #3066031 Wrong syntax higlight for broken c++ style commentsnyamatongwe1-3/+5
2010-09-09Fix for bug #3062287 JavaScript lexer: recognize regexes following return ↵nyamatongwe1-2/+28
keyword.
2010-09-06Ensure changing the marker for a here-doc causes a redisplay.nyamatongwe1-0/+6
2010-09-06More accurate range for LineState modification notification so doesn't hit ↵nyamatongwe1-1/+1
the start of document.
2010-09-04Fix for bug #3058924 wrong highlighting for float literals containing +/-.nyamatongwe3-1/+7
Tests added for example numeric literals.
2010-09-02Added tag rel-2-21 for changeset bae0795bc895nyamatongwe1-0/+1
2010-09-01Documented recent fix.nyamatongwe1-0/+4
2010-09-01Fix division by 0 crash with preprocessor expressions likenyamatongwe1-2/+2
#if 1 / 0 or #if 1 //
2010-08-29Fixed crash when lexer asks for line state of negative line. Better to just ↵nyamatongwe1-0/+2
return 0.
2010-08-29Updates for 2.21 release.nyamatongwe2-3/+89
2010-08-27Fixed bugs caused by ignoring single character \n line ends on #include linesnyamatongwe1-0/+8
causing preprocessor memory to be out of sync.
2010-08-27Updates for version 2.21.nyamatongwe5-13/+22
2010-08-27NextPosition treats \r\n as two characters as this allows searching for \n.nyamatongwe1-13/+1
2010-08-24Mouse button down claims focus early so that container notifications can ↵nyamatongwe1-1/+1
switch focus.
2010-08-19Adding GetLineIndentation to IDocument.nyamatongwe3-5/+6
2010-08-19Exposed BufferPointer through IDocument.nyamatongwe2-1/+2
2010-08-19Moved declarations for GdkFont code inside ifndef to avoid warnings.nyamatongwe1-11/+11
2010-08-19Removed unused declaration.nyamatongwe1-1/+0
2010-08-19Ensure styling committed when lexers call StyleContext::Complete.nyamatongwe1-0/+1
2010-08-18Updated for ILexer.h.Unknown1-25/+19
2010-08-18Changed deprecation flags to turn off GdkFont use which is deprecated.Unknown1-1/+1
2010-08-18GTK+ version-sensitive definitions for widget query functions/macrosUnknown2-7/+23
to avoid deprecation warnings on GTK+ 2.20.
2010-08-18Include deprecation options to make it easy to check for use of deprecated APIs.nyamatongwe1-1/+2
2010-08-18Allow disabling use of deprecated GdkFont by defining DISABLE_GDK_FONT.nyamatongwe1-2/+39
2010-08-18Avoid deprecated API gtk_type_class.nyamatongwe1-1/+1
2010-08-18Avoid deprecated API gtk_selection_clear.nyamatongwe1-1/+4
2010-08-18Removed code that is not used since GTK+ 1.x is no longer supported.nyamatongwe1-41/+0
That code used deprecated APIs.
2010-08-18Merged deprecation avoidance on GTK+.nyamatongwe3-47/+52
2010-08-18Fixed error with old compiler's incorrect view of scope.nyamatongwe1-1/+1
2010-08-17Upgraded deprecated APIs.nyamatongwe2-46/+51
2010-08-17Using a non-deprecated API to allow client code to pass deprecation checking.nyamatongwe1-1/+1
2010-08-16Credit.nyamatongwe1-0/+1
2010-08-16Bug #3045386 fixed: Markdown lexer can hang in an infinite loopnyamatongwe1-2/+2
Fix from Colomban Wendling.
2010-08-15Ensure lexers linked in whenever asked to find a lexer.nyamatongwe1-0/+2
2010-08-13Fix for bug #3043419 Unfolding incorrectly.nyamatongwe1-1/+10
When new line characters are inserted on a folded fold header line, the fold is unfolded.
2010-08-11Feature request #3042229 Refactor of powerpro lexer.nyamatongwe1-132/+158
Cleaned up the powerpro lexer. Renamed variables to be more descriptive Removed code that wasn't being used
2010-08-11Feature Request #3042228 Allow underscore to be a Powershell word character.nyamatongwe1-1/+1
2010-08-10Feature Request #3039490 Improved syntactic highlighting for Haskellnyamatongwe1-81/+171
'as' is a keyword but in all other contexts it is a normal identifier. The highligthting was failing if the operators are not separated by spaces: 10+20 There was highlighting for data types, classes and instances but it didn't work correctly. This was removed.
2010-08-07Ensure static linking of standard C++ library.nyamatongwe1-4/+4
Some tidying.
2010-08-07Fix crash when calling SCI_REPLACETARGETRE without having done a search first.nyamatongwe1-1/+4
2010-08-07Made it possible to turn folding off again by looking at the "fold" property.nyamatongwe2-3/+12
2010-08-06Bug #3031742 MySQL Lexer folding does not work. Fixed by Mike Lischke.nyamatongwe1-92/+104
2010-08-05Removing SC_CP_DBCS as it does not fit into new DBCS processing code.nyamatongwe4-25/+14
Updated documentation to describe the common DBCS support between platforms and removed outdated text.
2010-08-05Avoid drawing old pixbuf contents when scrolled far horizontally.nyamatongwe1-0/+2
Caused by 16-bit integer underflow on coordinates, possibly in X.
2010-08-05Korean code page 949 supported.Unknown1-3/+3
Chinese code page 936 maps to iconv id CP936 which maps more characters than GB2312.