Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-03-07 | Bug [#1910]. Accessibility support may be queried and, on GTK+, disabled. | Neil | 2 | -0/+14 | |
2017-03-06 | New "indent" lexer styled as plain text but folded by indentation level. | Vicente | 2 | -0/+2 | |
2017-03-04 | Fix minor issues in interface definitions. | Neil Hodgson | 1 | -5/+9 | |
2017-02-12 | Bug [#1848]. Support Python f-strings with new styles. | John Ehresman | 2 | -0/+8 | |
2017-01-14 | Removed return type from AddSelection and SetSelection. | Neil | 1 | -2/+2 | |
2016-11-30 | Updated API to match conventions. | Neil | 1 | -1/+1 | |
2016-11-23 | Implementation of MarginRightClick event. | Tse Kit Yam | 2 | -2/+12 | |
2016-11-29 | Textual tags may be displayed on folded lines with SCI_TOGGLEFOLDSHOWTEXT. | Tse Kit Yam | 2 | -0/+18 | |
2016-11-25 | Feature [feature-requests:#1166]. EDIFACT lexer and folder added. | Iain Clarke | 2 | -0/+21 | |
2016-11-18 | Remove the Scintilla namespace from Scintilla.h. | Neil | 1 | -9/+1 | |
2016-11-16 | Change definition of uptr_t and sptr_t to use standardised types and headers | Neil | 1 | -13/+12 | |
instead of Win32 API types and basetsd.h when on Windows. | |||||
2016-11-16 | Removed elements that have been deprecated for more than 5 years. | Neil | 2 | -16/+0 | |
2016-11-16 | Deprecate non-branded struct names in Scintilla.h. | Neil | 1 | -8/+6 | |
2016-11-14 | Added alternate appearance for visible tabs which looks like a horizontal line. | jedailey | 2 | -0/+15 | |
2016-11-07 | Move warning suppression from global header to Qt platform layer header so | Neil | 1 | -4/+0 | |
warnings are visible for platform-independent code. | |||||
2016-10-26 | INDIC_POINT and INDIC_POINTCHARACTER indicators added to display small arrows | Neil | 2 | -0/+4 | |
underneath positions or characters. | |||||
2016-09-29 | Increased compatibility between interface definition and documentation. | Neil | 1 | -95/+96 | |
Made parameter names and types more consistent. Document return types. Use more classes in documentation to facilitate scripting and styling. | |||||
2016-09-29 | The number of margins can be changed with SCI_SETMARGINS. | Neil | 2 | -0/+8 | |
2016-09-29 | Margin type SC_MARGIN_COLOUR and API SCI_SETMARGINBACKN added. | Neil | 2 | -0/+10 | |
Allows choosing any colour for a margin. | |||||
2016-09-27 | On Win32, mouse wheel scrolling can be restricted to only occur when the mouse | Stefan Küng | 2 | -0/+7 | |
is within the window. | |||||
2016-09-23 | EDGE_MULTILINE and SCI_MULTIEDGEADDLINE added to allow displaying multiple | A-R-C-A | 2 | -1/+11 | |
vertical edges simultaneously. | |||||
2016-09-22 | Baan lexer changed significantly with more lexical states, keyword sets, and | Neil | 2 | -0/+28 | |
support for abridged keywords. | |||||
2016-09-21 | Feature [feature-requests:#1143]. Replace "progress" lexer with "abl". | Yuval Papish | 2 | -65/+27 | |
ILexer implementation Lexer can now correctly handle: "end triggers" phrase "last-event:function" phrase Indefinite comment level depth | |||||
2016-09-17 | Provide comments for each individual feature instead of group comments as | Neil | 1 | -8/+41 | |
this helps downstream use. | |||||
2016-09-12 | Fixed some enums in Scintilla.iface which may change bindings. | Neil | 1 | -2/+2 | |
2016-08-20 | Bug [#1648]: Option added to prevent left arrow movement and selection wrapping | Neil | 2 | -0/+2 | |
to previous line. | |||||
2016-05-17 | Enable g-ir-scanner to scan ScintillaObject signals | Thomas Martitz | 2 | -3/+14 | |
Currently, the ScintillaObject signals can't be used from python code via gobject-introspection. This is because g-ir-scanner does not properly scan the signals. For signals, there is the additional requirement that parameters have are registered GTypes. For the sci-notify signal, this can be accomplished by boxing SCNotification. In addition, g-ir-scanner also runs on Scintilla.h where it picks up additional structs. test/gi/ is updated accordingly. The test python script is enhanced to showcase the signals (some fixes to the makefile are included as well). | |||||
2016-05-17 | Backed out changeset: 89cda794d0dd as fixed changeset will be sent by author. | Neil | 2 | -14/+3 | |
2016-04-26 | Enable g-ir-scanner to scan ScintillaObject signals | Thomas Martitz | 2 | -3/+14 | |
Currently, the ScintillaObject signals can't be used from python code via gobject-introspection. This is because g-ir-scanner does not properly scan the signals. For signals, there is the additional requirement that parameters have are registered GTypes. For the sci-notify signal, this can be accomplished by boxing SCNotification. In addition, g-ir-scanner also runs on Scintilla.h where it picks up additional structs. test/gi/ is updated accordingly. The test python script is enhanced to showcase the signals (some fixes to the makefile are included as well). | |||||
2016-04-28 | C++ 11 <regex> support built by default. | Neil | 1 | -1/+1 | |
2016-03-20 | Feature [feature-requests:#1140]. JSON lexer added. | nkmathew | 2 | -0/+32 | |
2016-02-09 | Fix 64-bit build on Windows which was broken in 3.6.3 as long only 32-bits. | Neil | 1 | -1/+1 | |
2015-12-15 | Minor cleanups for GObject introspection. | Neil | 1 | -4/+5 | |
Avoid doc-comment in header as they are interpreted by g-ir-scanner, fix a typo, remove empty lines, add to change log. | |||||
2015-12-13 | Fix issues raised by review and some more | Thomas Martitz | 1 | -2/+1 | |
- remove any notion of deprecation of legacy symbol names - make sure typelib search path is set for test program - add separate test target to test/gi/makefile - improve g-ir-scanner call command line - fixed gtk2 support of test test/gi/gi-test.py | |||||
2015-08-10 | Enable g-ir-scanner to run on ScintillaWidget.h | Thomas Martitz | 1 | -1/+18 | |
g-ir-scanner expects a certain naming scheme. Adhering gives the benefit of automatically getting correct gobject-introspection data. | |||||
2015-11-21 | Fix a typo and some extra punctuation. | Neil | 1 | -3/+3 | |
2015-11-20 | Remove line end whitespace. | Neil | 2 | -2/+2 | |
2015-11-11 | Implemented idle styling. This allows painting without first styling all visible | Neil | 2 | -0/+18 | |
text then styling in the background using idle-time. | |||||
2015-09-26 | Whitespace may be made visible just in indentation. | nkmathew | 2 | -0/+2 | |
2015-08-28 | Implement some ANSI escape sequences to change foreground colour and intensity. | Neil | 2 | -0/+36 | |
2015-08-16 | On GTK+, support code page 866 with SC_CHARSET_OEM866. | Serg Stetsuk | 2 | -0/+2 | |
2015-08-16 | Bug [#1749]. Added lexical class for CoffeeScript instance properties and fixed | Neil | 2 | -0/+2 | |
some cases of regex highlighting. From active-m / ActiveState. | |||||
2015-08-08 | Add prefixes for BlitzBasic, PureBasic, FreeBasic, COBOL, TACL, and TAL. | Neil | 1 | -2/+8 | |
2015-07-17 | Add the Sci_Position, Sci_PositionU, and Sci_PositionCR typedefs to external | Neil | 3 | -30/+55 | |
interfaces to allow these to become 64-bit in the future. | |||||
2015-07-03 | Feature [feature-requests:#1109]. SCN_AUTOCCOMPLETED sent after text insertion. | Jonathan Hunt | 2 | -3/+21 | |
From Jonathan Hunt. | |||||
2015-06-30 | Added SC_CASE_CAMEL to the case mode style attribute. | Neil | 2 | -0/+2 | |
2015-06-11 | Added MultipleSelectAddNext, MultipleSelectAddEach, IsRangeWord, and | Neil | 2 | -4/+22 | |
TargetWholeDocument. | |||||
2014-01-20 | Fix typo in comment | Stefan Weil | 1 | -1/+1 | |
2015-04-10 | Allow (null) use of KEYSUNICODE API when built to include deprecated features. | Neil | 1 | -0/+2 | |
2015-04-10 | Removed dead APIs. | Neil | 1 | -2/+0 | |