aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2014-11-28Change log.Neil1-0/+4
2014-11-25Bug [#1420]. CoffeeScript: Describe existing secondary keyword setsColomban Wendling1-0/+3
2014-11-25Bug [#1420]. CoffeeScript: Drop code that doesn't apply to CoffeeScriptColomban Wendling1-166/+9
Drop obsolete code that was copied from LexCPP but that is not relevant or even valid for CoffeeScript. Closes #1420.
2014-11-24SC_TECHNOLOGY_DIRECTWRITEDC is another provisional mode for DirectWrite drawingNeil5-20/+65
which may fix problems with sibling windows.
2014-11-19Platform overrides for some drawing and behaviour to benefit PLAT_CURSES.Neil9-12/+73
From Mitchell Foral.
2014-11-19Bug [#1670]. Avoid processing mouse move events where the mouse has not movedNeil2-6/+19
as these can cause unexpected dwell start notifications. From Yusuf Ramazan Karagöz.
2014-11-14Feature [feature-requests:#1086]. Annotation display style ANNOTATION_INDENTED;Erik Angelin5-9/+27
like _BOXED but no border.
2014-11-13Bug [#1643]. Only show system caret for GDI as it interferes with Direct2D.Neil2-1/+8
From Mat Berchtold.
2014-10-20Optimize retrieval of empty range.Neil1-1/+1
2014-10-19Avoid warning about assiging pointer to integer.Neil1-2/+2
2014-10-16Reordered searching section so preferred SCI_SEARCHINTARGET API is shown firstNeil1-99/+94
to discourage use of other APIs. Fixed some HTML bugs.
2014-10-16Explain how multiple selections are processed.Neil1-0/+3
2014-10-16Bug [#1666]. Include <stdexcept> due to report of a problem with compilingNeil1-0/+1
Document.h with some versions of MinGW.
2014-10-14Bug [#1664]. Fix folding of "block" keyword.Neil2-1/+6
From danselmi.
2014-10-14Change log.Neil1-0/+4
2014-10-11GTK: Don't create widgets in the ::realize handlerColomban Wendling1-13/+16
Creating a widget may lead to a ::hierarchy-changed signal to be emitted, which itself may lead a tooltip window to be unrealized. This is problematic because it can lead to the ::unrealize handler to be called during the ::realize handler, breaking most of the logic there assuming the widget was properly realized. This fixes adding a Scintilla widget inside a GTK2 tooltip. GTK3 didn't seem to be affected. Also properly destroy the preedit popup window with the widget.
2014-10-10Remove 32-bit support.Neil Hodgson1-2/+2
2014-10-10Ensure can see standard exceptions and so build.Neil2-0/+2
2014-10-09Avoid extra space when pasting from external application on Windows.Neil2-0/+10
From Mitchell Foral.
2014-10-07Feature [feature-requests:#1077]. Support MinGW compilation under Linux.Neil2-3/+14
2014-10-07Removing old CVS artifacts.Neil3-7/+0
2014-10-07Change log.Neil1-0/+4
2014-10-07Trace failures to flush when drawing bitmaps in Direct2D.Neil1-1/+4
2014-10-07Feature [feature-requests:#1080]. Allow right click selection in popup menu.Neil1-1/+1
2014-10-06Include <stdexcept> due to report of a problem with compiling Document.h.Neil1-0/+1
2014-10-04Change log.Neil1-0/+14
2014-10-04Bug [#1657]. Prevent caret blinking when holding down Delete key.Neil2-0/+13
2014-10-03CountCharacters can be const so it is now.Neil2-2/+2
2014-10-02Allocate indicators for IME use after previously allowed indicators.Neil4-7/+15
2014-10-02Switch C++ runtime library to libc++ to allow use of features from C++11.Neil Hodgson1-0/+4
2014-10-02Allow using C++11 <regex> for searches as a provisional feature.Neil13-84/+630
2014-10-02Fix spelling.Neil1-4/+4
2014-10-02Include <stdexcept> so that exceptions derived from std::runtime_error can beNeil8-0/+8
used.
2014-09-30Added tag rel-3-5-1 for changeset 01c4696a39a9Neil1-0/+1
2014-09-30Updated date and release.Neil1-2/+2
2014-09-25Updating for 3.5.1.Neil7-13/+14
2014-09-25Mentioning that SC_TECHNOLOGY_DIRECTWRITERETAIN is provisional.Neil2-5/+10
2014-09-24GTK: Fix auto-completion popup row height computation on GTK 3.14Colomban Wendling1-0/+9
GTK 3.14 changed how the cell padding is calculated, and I can't seem to understand the new logic yet. So, use the correct API for computing the row size, which unfortunately doesn't work for us on GTK2, but otherwise is a better way to go anyway. Tested with GTK 3.2, 3.8, 3.10, 3.12 and 3.14.
2014-09-22Add a constructor that takes arguments for each attribute to make it easier toNeil2-11/+8
set up indicators. Changed field order so that the colour, which is likely to be set, is before under which is likely to be left default.
2014-09-19Updated for Xcode 6.0.1.Neil Hodgson1-1/+1
2014-09-16GTK: Don't hardcode auto-completion popup frame border widthColomban Wendling1-3/+6
2014-09-12GTK: Fix auto-completion popup sizing on some themesColomban Wendling1-11/+11
2014-09-12GTK: Allow the auto-completion popup to be as small as neededColomban Wendling1-13/+32
2014-09-13Use const where possible in regular expression code.Neil1-6/+6
2014-09-13Avoid extra NUL in strings and unnecessary allocations.Neil1-2/+1
2014-09-12Change log.Neil1-0/+3
2014-09-11GTK: Fix auto-completion popup width to better fit contentsColomban Wendling1-2/+23
2014-09-11GTK: Fix auto-completion popup height to better fit contentsColomban Wendling1-22/+30
2014-09-12Support for SCI_NAMESPACE in the ScintillaEdit part of the Qt layer.Neil3-1/+17
From Jason Haslam.
2014-09-12Allow choice between windowed and inline IME.Neil9-1/+54