aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
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.
2015-12-11Korean input by word fixed.johnsonj2-4/+6
2015-12-11Bug [#1790]. Include '&' and '|' bitwise operators for Lua 5.3.Kein-Hong Man2-1/+5
2015-12-10Do nothing for IME composition for read-only documents.johnsonj1-0/+5
2015-12-10Bug [#1788]. Fix crash when autocompletion list closed during scroll bounce-backChinh Nguyen2-0/+5
2015-12-10Flag incomplete here doc delimiters as syntax errors, matching bash 4.3.Kein-Hong Man3-17/+15
Avoid heap allocations for here delimiter and quote stack.
2015-12-10Fix warning in 64-bit builds.Neil1-1/+1
2015-12-08Cancel IME composition for read-only documents.johnsonj1-0/+5
2015-12-07Cancel IME composition for read-only documents.johnsonj1-1/+4
2015-12-07Allow any style for IME instead of truncating style to 5 bits.Neil1-1/+1
2015-12-07Prefer StyleIndexAt over StyleAt to avoid problems with out-of-bounds access forNeil3-9/+9
styles > 0x7f.
2015-12-04Fix some problems with out-of-bounds access for protected text.Neil2-4/+5
2015-12-04Change log.Neil1-0/+4
2015-12-04Bug [#1784]. Highlight whole run for hover indicator when wrapped.Neil2-8/+4
Less efficient now as redraws all text when hover position changes.
2015-12-01Undo virtual spaces in one step at start of IME composition.Neil1-0/+2
2015-11-21Fix a typo and some extra punctuation.Neil1-3/+3
2015-11-20Text layout whitespace fixes.Neil1-2/+2
2015-11-20Remove line end whitespace.Neil48-302/+302
2015-11-20Using DirectWrite, for ligatures and other character clusters, display caret andNeil2-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-20Bug [#1779]. Better Unicode input support on Windows systems.Sam Hocevar4-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-15Fix HTML markup.Neil1-1/+1
2015-11-15Send SCN_UPDATEUI with SC_UPDATE_SELECTION when application changes multipleJohn Ehresman2-0/+14
selection.
2015-11-13Check for NULL value in ScintillaGTK::ForAll()Jiří Techet1-2/+4
2015-11-11Implemented idle styling. This allows painting without first styling all visibleNeil9-10/+161
text then styling in the background using idle-time.
2015-11-11SciTE change log.Neil1-0/+5
2015-11-11Don't use -fPIC on Windows due to warnings.Neil1-1/+6
2015-11-09Add -fPIC for position-independent code to allow linking as a shared library.Neil1-1/+1
2015-11-09Change log.Neil1-0/+12
2015-11-06Unparent scrollbars in dispose on GTKJiří Techet1-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-06Added tag rel-3-6-2 for changeset d906ba5d62cbNeil0-0/+0
2015-11-02Fix typo.Neil1-1/+1
2015-11-02Updates for 3.6.2.Neil8-23/+19
2015-11-02Fix grammar.Neil1-1/+1
2015-10-27Ensure correct propagation of viewWillDraw even after owner deleted.Neil Hodgson1-1/+3
From Chinh Nguyen.
2015-10-27Use settings that may allow translucent painting. Incomplete as EditView doesNeil1-1/+1
not currently support translucent painting.
2015-10-25GTK: Fix autoc popup row height on GTK2 when it changes at runtimeColomban Wendling2-2/+6
Now the popup is cached the row height has to be re-computed when the font changes on GTK2 too. Closes [bugs:1774].
2015-10-27Log previous change.Neil1-0/+5
2015-10-25Fix line end movement on display lines when EOLs are visibleColomban Wendling1-2/+4
2015-10-26Log Cocoa crash fix changes.Neil Hodgson1-0/+7
2015-10-26Remove unnecessary timer variables.Neil Hodgson2-9/+5
2015-10-26Make timers active in modal dialogs by adding them to NSModalPanelRunLoopMode.Neil Hodgson1-2/+4
From Mike Lischke.
2015-10-26Avoid possibility of ScintillaCocoa receiving idles after deallocation by ↵Neil Hodgson1-0/+13
severing the connection from TimerTarget back to ScintillaCocoa and releasing the notification queue.
2015-10-24When deallocating ScintillaView, null out the reference to it from ↵Neil Hodgson1-1/+10
SCIContentView since responsive scrolling causes callbacks after the deallocation. Also remove the scrollview to try to finalize it although it still lives for a short period.
2015-10-23Add a menu command to ScintillaTest to add or remove an extra ScintillaNeil Hodgson3-1/+34
view on the right of the window to allow testing deletion of a ScintillaView.
2015-10-23Xcode 7 didn't like the xib so upgraded it to the current format.Neil Hodgson1-3992/+609