Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-03-17 | Bug [#1706]. Release list box objects when autocompletion closed. | Neil Hodgson | 2 | -15/+46 | |
2015-03-15 | Change log. | Neil | 1 | -0/+5 | |
2015-03-15 | Bug [#1705]. Fix a bug with Mingw-w64. Probably due to incorrect definition of | Neil | 1 | -2/+3 | |
DWRITE_TEXT_METRICS struct in header. | |||||
2015-03-14 | Fix calltip display bug on Cocoa. | Neil Hodgson | 2 | -0/+13 | |
2015-03-13 | Bug [#1701]. Turn on _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES. | Neil | 1 | -1/+2 | |
2015-03-13 | Truncate elements that are near to maxItemLen to avoid possibility of writing | Neil | 1 | -1/+3 | |
outside bounds. Also avoids warning for use of strncpy. | |||||
2015-03-13 | Removed potentially out-of-bounds write. | Neil | 1 | -1/+0 | |
2015-03-13 | Changed to symbolic constant. | Neil | 1 | -3/+3 | |
2015-03-13 | Scintilla is now always a wide character window so remove vestiges of narrow | Neil | 4 | -92/+65 | |
character window support. | |||||
2015-03-12 | Reduce size of buffers allocated on stack to avoid warnings from Visual Studio | Neil | 1 | -1/+1 | |
analyze. | |||||
2015-03-12 | More efficient conversion to Hangul. | Neil | 3 | -59/+47 | |
From johnsonj. | |||||
2015-03-11 | Allow minimum tab width to be tweaked to allow character cell implementation | Neil | 2 | -2/+4 | |
to work better. | |||||
2015-03-11 | Change log. | Neil Hodgson | 1 | -0/+11 | |
2015-03-10 | fix problem where preprocessor fold code would incorrectly match ↵ | Joe Mueller | 1 | -1/+1 | |
`endcelldefine with `if | |||||
2015-03-11 | Update drag and drop to use current APIs instead of deprecated APIs. | Neil Hodgson | 3 | -33/+120 | |
2015-03-10 | Change log for already released 3.5.4. | Neil | 1 | -0/+3 | |
2015-03-09 | Fix an unclosed tag in the documentation | Colomban Wendling | 1 | -1/+1 | |
2015-03-08 | Added tag rel-3-5-4 for changeset 16ffc2a3ae15 | Neil | 1 | -0/+1 | |
2015-03-05 | Updates for 3.5.4. | Neil | 7 | -15/+16 | |
2015-03-01 | Change log. | Neil | 1 | -0/+4 | |
2015-02-26 | Changed selection appearance to lighter as that leaves the text more ↵ | Neil Hodgson | 1 | -0/+1 | |
readable on 10.10. | |||||
2015-02-26 | Fix bug where autocompletion and call-ups were placed on the wrong screen due to | Neil Hodgson | 1 | -5/+3 | |
some code using the screen of the window and other code using the main screen. | |||||
2015-02-24 | Reindented file consistently with tabs using astyle. | Neil | 1 | -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-24 | Bug [#1642]. Fixes a bug with some strings in TCL. | Neil | 2 | -2/+11 | |
From Markus Moser. | |||||
2015-02-24 | Notify container of non-BMP characters correctly. | Neil | 2 | -23/+4 | |
2015-02-23 | Fix non-BMP character entry through the inline IME. | Neil | 3 | -22/+25 | |
2015-02-23 | Add SCI_GETTARGETTEXT as a simpler alternate to SCI_GETTEXTRANGE. | Neil | 4 | -2/+16 | |
2015-02-22 | Avoid warnings about uninitialised field. | Neil | 1 | -1/+1 | |
2015-02-22 | Documented recent change. | Neil Hodgson | 1 | -0/+7 | |
2015-02-22 | Implement additional methods from the NSTextInputClient protocol so that more | Neil Hodgson | 4 | -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. | |||||
2015-02-22 | Added SCI_SETTARGETRANGE method to set both the start and end of the target. | Neil Hodgson | 4 | -0/+11 | |
2015-02-22 | Implement VK_HANJA for Korean on Windows. | Neil | 8 | -7/+299 | |
2015-02-19 | Document constant that had not been defined. | Neil | 1 | -0/+1 | |
2015-02-19 | Add methods for converting between byte positions and UTF-16 code point ↵ | Neil Hodgson | 2 | -0/+38 | |
positions. This is needed on Cocoa where the IME wants to be able to index into the document with UTF-16 counts to match Cocoa's own use of UTF-16. | |||||
2015-02-19 | Correct typo. | Neil Hodgson | 1 | -1/+1 | |
2015-02-19 | Implement lexer.cpp.verbatim.strings.allow.escapes. | Neil Hodgson | 2 | -1/+12 | |
2015-02-17 | fix bug where terminating whitespace character was not included in escaped ↵ | Joe Mueller | 1 | -3/+1 | |
identifier | |||||
2015-02-17 | Credit. | Neil | 1 | -0/+1 | |
2015-02-17 | Change log. | Neil | 1 | -0/+4 | |
2015-02-17 | Reindented file consistently with 4 space indents using astyle -s4 -OHUKk3 | Neil | 1 | -410/+411 | |
The file had become a mixture of tab indenting and space indenting amd the most common indentation was 4 spaces. No other changes were made in this change set. | |||||
2015-02-17 | Bug [#1697]. Allow folding of multiline comments in Ruby. | Neil | 1 | -0/+24 | |
2015-02-16 | Fix bugs caused by deleting text with undo collection off when entering IME ↵ | Neil Hodgson | 2 | -14/+45 | |
composition mode. This deleted text isn't in the undo history and it isn't in the document so can never be recovered so makes it impossible to correctly perform undo. Add logging for unexpected situations and throw an exception when undo can't be performed. Ensure empty marked text range is always in canonical (NSNotFound,0) form. | |||||
2015-02-16 | Implement SCI_TARGETASUTF8 and SCI_ENCODEDFROMUTF8 on Cocoa. | Neil Hodgson | 3 | -1/+94 | |
2015-02-15 | Add SC_INDICFLAG_VALUEFORE and INDIC_TEXTFORE to allow a wide range of indicator | Neil | 12 | -19/+130 | |
colours and to change the colour of text. | |||||
2015-02-15 | Change log. | Neil | 1 | -0/+4 | |
2015-02-11 | Don't disable adaptive speed of scrolling on OS X with GTK Quartz backend | Jiřà Techet | 1 | -3/+4 | |
There does not seem to be any adaptive scroll speed control when using the Quartz backend so we can use the one provided by Scintilla. | |||||
2015-02-15 | Change log. | Neil | 1 | -1/+2 | |
2015-02-12 | fix problem with typdef class statements creating a fold point, expecting an ↵ | Joe Mueller | 1 | -3/+13 | |
endclass statement | |||||
2015-02-14 | Fix unused parameter warnings. Remove code that is never executed. | Neil Hodgson | 2 | -7/+12 | |
2015-02-14 | Fix warnings for suspicious type conversions and not fully bracketed ↵ | Neil Hodgson | 7 | -71/+73 | |
initializers, |