Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-12-20 | Bug [#1794]. Support using '#' in non-comment ways as is possible with zsh. | Kein-Hong Man | 2 | -5/+49 | |
2015-12-18 | Bug [#1793]. Add support for Perl 5.22. | Kein-Hong Man | 5 | -30/+453 | |
Double-diamond operator <<>> Hexadecimal floating point literals Repetition in list assignment Added example file to the lexing tests and changed lexing tests to allow larger files and to standardise on Unix line ends when testing these larger files to avoid spurious failures. | |||||
2015-12-16 | Change log. | Neil | 1 | -0/+7 | |
2015-12-16 | Don't use .DEF file as it is not needed. | Neil | 2 | -4/+4 | |
2015-12-16 | Detect warnings from the Microsoft linker. | Neil | 1 | -0/+4 | |
2015-12-15 | Updated change log for SciTE addition. | Neil | 1 | -0/+5 | |
2015-12-15 | Minor cleanups for GObject introspection. | Neil | 4 | -8/+9 | |
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 | 4 | -15/+28 | |
- 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-09-30 | Add a test suite to check gobject-introspection data | Thomas Martitz | 3 | -0/+184 | |
The test suite acts also as an example for downstream projects to generate gobject-introspection data. A known-good .gir file is checked in for checking results in the future. Lastly, a small python uses the gobject-introspection data to create a small editor window. The change to gtk/makefile is because scintilla needs to be in a shared library for the python program. Therefore scintilla.a has to be compiled with -fPIC. | |||||
2015-08-10 | Enable g-ir-scanner to run on ScintillaWidget.h | Thomas Martitz | 2 | -5/+39 | |
g-ir-scanner expects a certain naming scheme. Adhering gives the benefit of automatically getting correct gobject-introspection data. | |||||
2015-12-15 | Simplify IME code by using g_unichar_to_utf8. | johnsonj | 1 | -44/+21 | |
2015-12-14 | Block IME when some selected text is protected. | johnsonj | 4 | -3/+7 | |
2015-12-13 | Korean input by word fixed. | johnsonj | 2 | -4/+4 | |
2015-12-12 | Update configuration to remove suppression no longer needed for Perl lexer. | Neil | 1 | -1/+0 | |
2015-12-12 | Bug [#1791]. Added a missing symbol (the underscore) for subroutine prototypes. | Kein-Hong Man | 2 | -4/+6 | |
Removed the dynamic array. | |||||
2015-12-11 | Bug [#1669]. Prevent crash when clicking on autocompletion list. | Neil | 1 | -1/+2 | |
This appears to be a focus problem. Clicking on the list sets it as the focus which removes focus from the Scintilla text window. Scintilla responds to loss of focus by destroying any popups including the autocompletion list which is not in a state where it is safe to be destroyed. Adding the WindowDoesNotAcceptFocus flag to the list prevents it from getting focus and thus prevents the crash. | |||||
2015-12-11 | Korean input by word fixed. | johnsonj | 2 | -4/+6 | |
2015-12-11 | Bug [#1790]. Include '&' and '|' bitwise operators for Lua 5.3. | Kein-Hong Man | 2 | -1/+5 | |
2015-12-10 | Do nothing for IME composition for read-only documents. | johnsonj | 1 | -0/+5 | |
2015-12-10 | Bug [#1788]. Fix crash when autocompletion list closed during scroll bounce-back | Chinh Nguyen | 2 | -0/+5 | |
2015-12-10 | Flag incomplete here doc delimiters as syntax errors, matching bash 4.3. | Kein-Hong Man | 3 | -17/+15 | |
Avoid heap allocations for here delimiter and quote stack. | |||||
2015-12-10 | Fix warning in 64-bit builds. | Neil | 1 | -1/+1 | |
2015-12-08 | Cancel IME composition for read-only documents. | johnsonj | 1 | -0/+5 | |
2015-12-07 | Cancel IME composition for read-only documents. | johnsonj | 1 | -1/+4 | |
2015-12-07 | Allow any style for IME instead of truncating style to 5 bits. | Neil | 1 | -1/+1 | |
2015-12-07 | Prefer StyleIndexAt over StyleAt to avoid problems with out-of-bounds access for | Neil | 3 | -9/+9 | |
styles > 0x7f. | |||||
2015-12-04 | Fix some problems with out-of-bounds access for protected text. | Neil | 2 | -4/+5 | |
2015-12-04 | Change log. | Neil | 1 | -0/+4 | |
2015-12-04 | Bug [#1784]. Highlight whole run for hover indicator when wrapped. | Neil | 2 | -8/+4 | |
Less efficient now as redraws all text when hover position changes. | |||||
2015-12-01 | Undo virtual spaces in one step at start of IME composition. | Neil | 1 | -0/+2 | |
2015-11-21 | Fix a typo and some extra punctuation. | Neil | 1 | -3/+3 | |
2015-11-20 | Text layout whitespace fixes. | Neil | 1 | -2/+2 | |
2015-11-20 | Remove line end whitespace. | Neil | 48 | -302/+302 | |
2015-11-20 | Using DirectWrite, for ligatures and other character clusters, display caret and | Neil | 2 | -4/+8 | |
selections part-way through clusters so that the caret doesn't stick to the end of the cluster making it easier to understand editing actions. | |||||
2015-11-20 | Bug [#1779]. Better Unicode input support on Windows systems. | Sam Hocevar | 4 | -29/+58 | |
- support surrogate pairs in WM_CHAR messages - support characters from supplementary planes in WM_UNICHAR messages - support WM_UNICHAR messages in non-Unicode mode - fix some code duplication Also, do not return FALSE upon receiving a WM_UNICHAR message with a UNICODE_NOCHAR parameter, since WM_UNICHAR can actually be handled just fine (at least with the exact same level of support as WM_CHAR). | |||||
2015-11-15 | Fix HTML markup. | Neil | 1 | -1/+1 | |
2015-11-15 | Send SCN_UPDATEUI with SC_UPDATE_SELECTION when application changes multiple | John Ehresman | 2 | -0/+14 | |
selection. | |||||
2015-11-13 | Check for NULL value in ScintillaGTK::ForAll() | Jiří Techet | 1 | -2/+4 | |
2015-11-11 | Implemented idle styling. This allows painting without first styling all visible | Neil | 9 | -10/+161 | |
text then styling in the background using idle-time. | |||||
2015-11-11 | SciTE change log. | Neil | 1 | -0/+5 | |
2015-11-11 | Don't use -fPIC on Windows due to warnings. | Neil | 1 | -1/+6 | |
2015-11-09 | Add -fPIC for position-independent code to allow linking as a shared library. | Neil | 1 | -1/+1 | |
2015-11-09 | Change log. | Neil | 1 | -0/+12 | |
2015-11-06 | Unparent scrollbars in dispose on GTK | Jiří Techet | 1 | -3/+23 | |
Dispose should be used to remove references to objects that might point to the destructed object. This is the case of scrollbars whose parent is ScintillaGtk and which internally hold pointers to it. This eliminates warnings on OS X. | |||||
2015-11-06 | Added tag rel-3-6-2 for changeset d906ba5d62cb | Neil | 1 | -0/+1 | |
2015-11-02 | Fix typo.rel-3-6-2 | Neil | 1 | -1/+1 | |
2015-11-02 | Updates for 3.6.2. | Neil | 8 | -23/+19 | |
2015-11-02 | Fix grammar. | Neil | 1 | -1/+1 | |
2015-10-27 | Ensure correct propagation of viewWillDraw even after owner deleted. | Neil Hodgson | 1 | -1/+3 | |
From Chinh Nguyen. | |||||
2015-10-27 | Use settings that may allow translucent painting. Incomplete as EditView does | Neil | 1 | -1/+1 | |
not currently support translucent painting. |