aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2015-04-10Avoid warning from clang analyze due to potential NULL pointer by assertingNeil Hodgson1-0/+1
pointer is not NULL.
2015-04-10Since OS X 10.5 no longer supported, remove code that only calledNeil Hodgson1-12/+6
CGContextSetAllowsFontSubpixelPositioning when available.
2015-04-10Change log.Neil Hodgson1-0/+3
2015-04-09Improvements to IME supporting multiple carets, handling Korean moreNeil2-71/+178
idiomatically and behaving more consistently with the other platforms. From johnsonj.
2015-04-09Avoid "absolute-value" warning from clang 3.6.Neil2-2/+3
2015-04-02Change log for SciTE.Neil1-0/+3
2015-04-01Bug [#1709]. Check whether pixmap is NULL before using to create bitmap.Neil Hodgson2-1/+6
2015-03-30Change log.Neil1-0/+3
2015-03-30Use inline IME for Korean and decide whether input is Korean more accurately.Neil1-6/+7
From johnsonj.
2015-03-29Change log.Neil1-0/+5
2015-03-29Bug [#1682] Removed the ascent member of Font and all wxWidgets-specific code.Neil2-9/+0
2015-03-29Fix handling of '+' and '-' in numbers.Neil2-4/+9
From Michael Staszewski.
2015-03-28Avoid Coverity warnings for case that should never fail.Neil1-1/+2
2015-03-27Bug [#1642] Reverting change set 5455 which caused problems with highlighting ofNeil2-5/+6
braces within strings.
2015-03-26Specify which APIs append a NUL to results.Neil2-20/+36
2015-03-21Change log.Neil1-0/+5
2015-03-20Change log for Verilog lexer.Neil1-1/+3
2015-03-18fix bug in fold.at.else processing, the code for "begin" that set ↵Joe Mueller1-3/+34
levelMinCurrent was missing. Add support for lexer.verilog.fold.preprocessor.else that behaves like fold.at.else only for preprocessor `else and `elseif directives.
2015-03-18fix bug where macro styling allowed '.', fix bug where macro styling could ↵Joe Mueller1-2/+2
carry over to the next line
2015-03-18Remove WM_IME_CHAR handling as it no longer appears possible to trigger.Neil1-38/+0
2015-03-17Bug [#1706]. Release list box objects when autocompletion closed.Neil Hodgson2-15/+46
2015-03-15Change log.Neil1-0/+5
2015-03-15Bug [#1705]. Fix a bug with Mingw-w64. Probably due to incorrect definition ofNeil1-2/+3
DWRITE_TEXT_METRICS struct in header.
2015-03-14Fix calltip display bug on Cocoa.Neil Hodgson2-0/+13
2015-03-13Bug [#1701]. Turn on _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES.Neil1-1/+2
2015-03-13Truncate elements that are near to maxItemLen to avoid possibility of writingNeil1-1/+3
outside bounds. Also avoids warning for use of strncpy.
2015-03-13Removed potentially out-of-bounds write.Neil1-1/+0
2015-03-13Changed to symbolic constant.Neil1-3/+3
2015-03-13Scintilla is now always a wide character window so remove vestiges of narrowNeil4-92/+65
character window support.
2015-03-12Reduce size of buffers allocated on stack to avoid warnings from Visual StudioNeil1-1/+1
analyze.
2015-03-12More efficient conversion to Hangul.Neil3-59/+47
From johnsonj.
2015-03-11Allow minimum tab width to be tweaked to allow character cell implementationNeil2-2/+4
to work better.
2015-03-11Change log.Neil Hodgson1-0/+11
2015-03-10fix problem where preprocessor fold code would incorrectly match ↵Joe Mueller1-1/+1
`endcelldefine with `if
2015-03-11Update drag and drop to use current APIs instead of deprecated APIs.Neil Hodgson3-33/+120
2015-03-10Change log for already released 3.5.4.Neil1-0/+3
2015-03-09Fix an unclosed tag in the documentationColomban Wendling1-1/+1
2015-03-08Added tag rel-3-5-4 for changeset 16ffc2a3ae15Neil0-0/+0
2015-03-05Updates for 3.5.4.rel-3-5-4Neil7-15/+16
2015-03-01Change log.Neil1-0/+4
2015-02-26Changed selection appearance to lighter as that leaves the text more ↵Neil Hodgson1-0/+1
readable on 10.10.
2015-02-26Fix bug where autocompletion and call-ups were placed on the wrong screen due toNeil Hodgson1-5/+3
some code using the screen of the window and other code using the main screen.
2015-02-24Reindented file consistently with tabs using astyle.Neil1-187/+185
The file had become a mixture of tab indenting and space indenting. No other changes were made in this change set.
2015-02-24Bug [#1642]. Fixes a bug with some strings in TCL.Neil2-2/+11
From Markus Moser.
2015-02-24Notify container of non-BMP characters correctly.Neil2-23/+4
2015-02-23Fix non-BMP character entry through the inline IME.Neil3-22/+25
2015-02-23Add SCI_GETTARGETTEXT as a simpler alternate to SCI_GETTEXTRANGE.Neil4-2/+16
2015-02-22Avoid warnings about uninitialised field.Neil1-1/+1
2015-02-22Documented recent change.Neil Hodgson1-0/+7
2015-02-22Implement additional methods from the NSTextInputClient protocol so that moreNeil Hodgson4-129/+230
features of the IME work. attributedSubstringForProposedRange:actualRange: and characterIndexForPoint: now have full implementations. This required using UTF-16 document indexes in many places as that is what Cocoa wants. Tentative undo is used for the composition text instead of turning off undo as that is safer and similar to IME code on other platforms.