aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2016-01-31Replace expressions to find level number of a fold level with function call.Neil4-27/+27
Simplifies code by removing any precedence issues and is shorter.
2016-01-31Bug [#1799]. Folds unfolded when two fold regions are merged by either deletingMarkus Nißl3-0/+27
an intervening line or changing its fold level by adding characters. Add LevelNumber function to simplify expressions implmenting folding.
2016-01-26Change log.Neil1-0/+3
2016-01-26Fix flags to be compatible with Qt 4.x.Neil1-2/+5
2016-01-25Make IME indicators work similarly on all 3 platforms.johnsonj2-25/+20
2016-01-22Encapsulate ImmGetCompositionStringW for GCS_COMPSTR and GCS_RESULTSTR.johnsonj1-19/+22
2016-01-22For Qt, release builds have assertions turned off.John Ehresman4-0/+12
2016-01-22Limit the extent of Mako line comments to finish before the line end characters.John Ehresman2-1/+13
This prevents a later assertion failure.
2016-01-18Added tag rel-3-6-3 for changeset e575024931f8Neil1-0/+1
2016-01-15Deferred release due to SciTE fix.rel-3-6-3Neil2-4/+7
2016-01-13Updated modification date.Neil1-1/+1
2016-01-12Add entries for ZeroBrane and XML Validator Buddy and fix description ofNeil1-1/+10
CodeAssistor.
2016-01-11Remove dead links and fix a broken link.Neil1-20/+1
2016-01-11Remove dead links and update others.Neil1-46/+28
2016-01-11Update links.Neil1-2/+2
2016-01-11Close viewport tag.Neil10-10/+10
2016-01-10Updates for 3.6.3.Neil8-16/+17
2016-01-10Use value initialization in preference to memset as simpler and more robust.Neil1-2/+1
2016-01-09Factored out mapping IME state to indicators and finding caret position.johnsonj1-25/+36
2016-01-09Recognize numbers more accurately and allow non-ASCII verbatim quotingThomas Linder Puls2-5/+15
characters.
2016-01-08Bug [#1801]. Fix spelling.Bewied1-2/+2
2016-01-07Remove pragmas that were needed for Windows 9x which is no longer supported.Neil1-10/+0
2016-01-07Factored out mapping IME state to indicators and finding caret position.johnsonj1-55/+66
2016-01-07Fix bug with final line in escape sequence recognition mode.Neil2-0/+4
2016-01-06Clarify out of bounds behaviour.Neil1-0/+1
2016-01-05Fix module ::-syntax when special characters such as 'x' are used.Kein-Hong Man3-6/+12
Added ' and " detection as prefix chars for x repetition operator.
2016-01-05Fix infinite loop with both wrap and idle styling to end turned on.Neil1-8/+4
2016-01-02IME attribute processing simplified for GTK+.johnsonj1-32/+19
2015-12-31Bug [#1796]. Expand folded areas before deleting fold header line.Neil2-8/+22
2015-12-31Treat Unicode line ends like common line ends when maintaining fold state.Neil4-5/+22
2015-12-28Fix typo.Neil1-1/+1
2015-12-28Bug [#1797]. Highlight changed subroutine prototype syntax for Perl 5.20.Kein-Hong Man5-17/+567
2015-12-28Bug [#1778]. Recognize more characters as here-doc delimiters.Kein-Hong Man2-8/+11
2015-12-21Bug [#1794]. Update previous change for '#' to get priority correct.Kein-Hong Man1-5/+4
2015-12-20Bug [#1794]. Support using '#' in non-comment ways as is possible with zsh.Kein-Hong Man2-5/+49
2015-12-18Bug [#1793]. Add support for Perl 5.22.Kein-Hong Man5-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-16Change log.Neil1-0/+7
2015-12-16Don't use .DEF file as it is not needed.Neil2-4/+4
2015-12-16Detect warnings from the Microsoft linker.Neil1-0/+4
2015-12-15Updated change log for SciTE addition.Neil1-0/+5
2015-12-15Minor cleanups for GObject introspection.Neil4-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-13Fix issues raised by review and some moreThomas Martitz4-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-30Add a test suite to check gobject-introspection dataThomas Martitz3-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-10Enable g-ir-scanner to run on ScintillaWidget.hThomas Martitz2-5/+39
g-ir-scanner expects a certain naming scheme. Adhering gives the benefit of automatically getting correct gobject-introspection data.
2015-12-15Simplify IME code by using g_unichar_to_utf8.johnsonj1-44/+21
2015-12-14Block IME when some selected text is protected.johnsonj4-3/+7
2015-12-13Korean input by word fixed.johnsonj2-4/+4
2015-12-12Update configuration to remove suppression no longer needed for Perl lexer.Neil1-1/+0
2015-12-12Bug [#1791]. Added a missing symbol (the underscore) for subroutine prototypes.Kein-Hong Man2-4/+6
Removed the dynamic array.
2015-12-11Bug [#1669]. Prevent crash when clicking on autocompletion list.Neil1-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.