Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-12-22 | Define ILexer5 with methods for retrieving name, ID, and property values. | Neil | 1 | -1/+1 | |
Implement ILexer5 on object lexers. Implement ILexer5 on LexerSimple wrapper for function lexers. | |||||
2019-07-01 | Use noexcept on Document where reasonable with no effect on external interface. | Neil | 1 | -33/+34 | |
Adds LengthNoExcept method that copies Length but only for internal use. | |||||
2019-07-01 | Use noexcept in HighlightDelimiter - its a simple struct. | Neil | 1 | -5/+5 | |
2019-04-26 | Feature [feature-requests:#1238]. Simplify camel case forcing by checking only | Neil | 1 | -1/+0 | |
for upper and lower case characters instead of current word characters. This changes behaviour for words like "_word" -> "_Word" instead of remaining "_word" but that doesn't matter for this feature's intended use which is to allow display of ASCII-only keywords in the user's preferred casing (else/ELSE/Else) for languages with case-insensitive keywords. | |||||
2019-03-29 | Feature [feature-requests:#1259]. Add SCI_SETCHARACTERCATEGORYOPTIMIZATION API | Neil | 1 | -0/+3 | |
to optimize speed of character category features. | |||||
2019-03-03 | Use constexpr where reasonable and move groups of static functions into unnamed | Neil | 1 | -1/+1 | |
namespace. | |||||
2019-03-03 | Use noexcept where reasonable. | Neil | 1 | -5/+5 | |
2019-03-03 | Delete standard methods of UndoGroup so it can not be copied. | Neil | 1 | -0/+5 | |
2018-10-15 | Extract duration measurement damping and clamping into ActionDuration class so | Neil | 1 | -1/+21 | |
that it can be reused. | |||||
2018-07-10 | Optional indexing of line starts in UTF-8 documents by UTF-32 code points and | Neil | 1 | -0/+5 | |
UTF-16 code units added. | |||||
2018-06-10 | Using noexcept for simple functions. | Neil | 1 | -29/+29 | |
2018-05-21 | Draw invalid bytes in DBCS when detected as blobs in a similar way to UTF-8. | Neil Hodgson | 1 | -0/+3 | |
2018-05-14 | Replace 0 with nullptr. | Neil | 1 | -4/+4 | |
2018-04-21 | Tighten definition of regular expression iterators so they are noexcept and | Neil | 1 | -8/+11 | |
define all the standard member functions. This cascades to all methods called by the iterators, affecting Document, CellBuffer, Partitioning, SplitVector and UTF-8 and DBCS functions. Other trivial functions declared noexcept. | |||||
2018-04-19 | Casting changed in many places, due to change to 64-bit variables for 64-bit | Neil | 1 | -3/+4 | |
builds. Some of the changes ensure no truncation while others remove casts that are no longer needed because the externally visible Sci_Position is now identical to Sci::Position. Some extra methods (CellBuffer::UCharAt and Document::SciLineFromPosition) added to avoid casting in client code. Sci::Line is currently identical to Sci::Position but it could be made smaller so lines have Sci::Line types and are cast. Some arguments widened. | |||||
2018-04-17 | Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than 2 GigaBytes. | Neil | 1 | -0/+2 | |
This option is provisional and experimental. | |||||
2018-04-14 | Make some changes recommended by clang-tidy. | Neil Hodgson | 1 | -1/+1 | |
2018-04-13 | Use 'override' for methods that are overridden. | Neil | 1 | -30/+32 | |
Group some method declarations and definitions for AddRef/Release and PerLine. | |||||
2018-04-04 | Remove redundant forward declaration and move forward declarations to top. | Neil | 1 | -10/+8 | |
2018-03-28 | Split decorations into interface and implementation. | Neil | 1 | -1/+1 | |
2018-03-09 | Use Position/Line/int more accurately in preparation for large documents. | Neil | 1 | -2/+2 | |
2018-02-27 | Use virtual to ensure LexState overrides LineEndTypesSupported method. | Neil | 1 | -1/+1 | |
2018-02-02 | Implement SC_DOCUMENTOPTION_STYLES_NONE. | Neil | 1 | -1/+1 | |
2017-09-11 | The Scintilla namespace is always active for internal symbols and for the lexer | Neil | 1 | -4/+0 | |
interfaces ILexer4 and IDocument. | |||||
2017-06-22 | Merge Ilexer and ILexerWithSubStyles into ILexer4 to avoid need for version | Neil | 1 | -1/+1 | |
checking in 4.0. Use lvRelease4 ID. | |||||
2017-07-09 | Bug [#1955]. The data parameter to ILoader::AddData made const. | Justin Dailey | 1 | -1/+1 | |
2017-06-22 | Update IDocument for version 4. Drop IDocumentWithLineEnd interface to just have | Neil | 1 | -3/+3 | |
IDocument but with all the methods from IDocumentWithLineEnd. This removes version checking (for now). Use dvRelease4 ID. Drop mask argument to StartStyling. | |||||
2017-06-22 | Cast between Sci_Position.h types used for lexers and Position.h types used in | Neil | 1 | -3/+3 | |
core to allow the Sci_Position.h types to widen to 64-bits. | |||||
2017-05-10 | Use unique_ptr fpr Partitioning, RunStyles, SparseVector, PositionCache and | Neil | 1 | -4/+13 | |
Document. | |||||
2017-04-29 | Use std::unique_ptr, std::vector, and move construction to simplify UndoHistory | Neil | 1 | -1/+1 | |
and make it easier to modify. Remove out of date warning suppression. | |||||
2017-04-22 | Using unique_ptr to simplify ownership of images, case folder, and list box. | Neil | 1 | -1/+1 | |
2017-04-22 | Encapsulate the LexInterface of Document. | Neil | 1 | -2/+3 | |
2017-04-21 | More consistent deletion of standard methods. | Neil | 1 | -0/+3 | |
2017-04-07 | Use same parameter names in declarations and definitions. | Neil | 1 | -2/+2 | |
2017-03-31 | Hide decorations details a little. | Neil | 1 | -3/+1 | |
2017-03-31 | Delete declaration of unimplemented method. | Neil | 1 | -1/+0 | |
2017-03-31 | Using Sci::Position and Sci::Line to mark variables that are document positions | Neil | 1 | -119/+112 | |
and lines. | |||||
2017-03-06 | Use several C++11 features as examples so problems with these features are seen. | Vicente | 1 | -1/+1 | |
Features used are move constructor, unique_ptr, deleted functions, enum class, lambda expression, and range for loop. | |||||
2017-01-22 | Remove extraneous "void". | Neil | 1 | -1/+1 | |
2016-10-06 | Word selection, navigation, and manipulation is now performed on characters | Neil | 1 | -14/+22 | |
instead of bytes leading to more natural behaviour for multi-byte encodings like UTF-8. | |||||
2016-08-20 | Make some methods const where reasonable. | Neil | 1 | -1/+1 | |
2016-01-31 | Bug [#1799]. Folds unfolded when two fold regions are merged by either deleting | Markus Nißl | 1 | -0/+4 | |
an intervening line or changing its fold level by adding characters. Add LevelNumber function to simplify expressions implmenting folding. | |||||
2015-12-31 | Treat Unicode line ends like common line ends when maintaining fold state. | Neil | 1 | -0/+1 | |
2015-12-04 | Fix some problems with out-of-bounds access for protected text. | Neil | 1 | -0/+1 | |
2015-11-20 | Remove line end whitespace. | Neil | 1 | -2/+2 | |
2015-11-11 | Implemented idle styling. This allows painting without first styling all visible | Neil | 1 | -0/+2 | |
text then styling in the background using idle-time. | |||||
2015-07-20 | Use Sci_Position when required to implement interfaces. | Neil | 1 | -19/+19 | |
2015-06-11 | Added MultipleSelectAddNext, MultipleSelectAddEach, IsRangeWord, and | Neil | 1 | -4/+4 | |
TargetWholeDocument. | |||||
2015-06-04 | Move FindText flag decoding from caller to function to minimize code and chance | Neil | 1 | -2/+1 | |
of mistakes. | |||||
2015-02-19 | Add methods for converting between byte positions and UTF-16 code point ↵ | Neil Hodgson | 1 | -0/+2 | |
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. |