Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-10-09 | Improve performance of text insertion when Unicode line indexing off. | Neil | 1 | -0/+1 | |
2018-07-10 | Optional indexing of line starts in UTF-8 documents by UTF-32 code points and | Neil | 1 | -0/+9 | |
UTF-16 code units added. | |||||
2018-06-10 | Using noexcept for simple functions. | Neil | 1 | -1/+1 | |
2018-05-14 | Replace 0 with nullptr. | Neil | 1 | -1/+1 | |
2018-04-28 | Delete standard functions on classes where there could be attempts to copy. | Neil | 1 | -0/+2 | |
2018-04-24 | Feature [feature-requests:#1215]. Make Action move constructor noexcept and use | Neil | 1 | -2/+1 | |
default implementation. | |||||
2018-04-21 | Use noexcept in basic data structures where reasonable. | Neil | 1 | -0/+2 | |
Declare the standard member functions in more classes | |||||
2018-04-21 | Tighten definition of regular expression iterators so they are noexcept and | Neil | 1 | -7/+7 | |
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 | -0/+1 | |
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 | -1/+4 | |
This option is provisional and experimental. | |||||
2018-03-03 | Split LineVector into interface and implementation classes to allow future | Neil | 1 | -29/+3 | |
choice between 32-bit and 64-bit position implementations. | |||||
2018-02-02 | Implement SC_DOCUMENTOPTION_STYLES_NONE. | Neil | 1 | -1/+2 | |
2018-02-01 | Templatize Partitioning so it can hold different types. | 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-04-29 | Use std::unique_ptr, std::vector, and move construction to simplify UndoHistory | Neil | 1 | -7/+9 | |
and make it easier to modify. Remove out of date warning suppression. | |||||
2017-04-21 | More consistent deletion of standard methods. | Neil | 1 | -1/+11 | |
2017-04-19 | Use =delete for unwanted functions. | Neil | 1 | -3/+2 | |
2017-04-07 | Use same parameter names in declarations and definitions. | Neil | 1 | -2/+2 | |
2017-03-31 | Using Sci::Position and Sci::Line to mark variables that are document positions | Neil | 1 | -35/+35 | |
and lines. | |||||
2016-11-15 | Remove declaration of methods that were moved to Document in change set 2867. | Neil | 1 | -16/+0 | |
2015-12-31 | Treat Unicode line ends like common line ends when maintaining fold state. | Neil | 1 | -0/+1 | |
2014-07-18 | Added the tentative undo feature. This is useful for IMEs that want to display | Neil | 1 | -0/+12 | |
and manipulate a character being composed, but may then commit or remove it leaving no history in undo of the intermediate forms. | |||||
2014-05-24 | Removing style byte indicators. | Neil | 1 | -2/+2 | |
2013-12-15 | Format normalization - whitespace and braces made consistent. | Neil | 1 | -2/+2 | |
Parameter names added to method declarations. | |||||
2013-07-03 | Make CellBuffer::DeleteChars return a pointer to the deleted data even | Neil | 1 | -1/+1 | |
when deleting all of the buffer. | |||||
2013-05-24 | Made methods const where they can be and are logically const as well. | nyamatongwe | 1 | -3/+3 | |
2013-05-03 | Moved allocation of data owned by Action into Action::Create. | nyamatongwe | 1 | -2/+2 | |
Made more variables const. | |||||
2013-01-19 | Add private copy constructors to prevent copying and avoid warnings. | nyamatongwe | 1 | -0/+3 | |
2013-01-19 | Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document, | nyamatongwe | 1 | -0/+5 | |
Editor and the message interface. Will only be turned on for lexers that support Unicode line ends. | |||||
2012-05-26 | Add GetRangePointer and GetGapPosition methods. | nyamatongwe | 1 | -0/+2 | |
2010-09-25 | Optimization of line layout by minimizing calls in Editor::LayoutLine and ↵ | nyamatongwe | 1 | -0/+1 | |
avoiding case force processing unless at least one style uses a case force option. | |||||
2010-09-16 | Make internal methods private. | nyamatongwe | 1 | -4/+4 | |
2010-05-05 | Made some methods const. | nyamatongwe | 1 | -2/+2 | |
2010-04-19 | Potential fix to bug #974009 and #2986727 Markers don't move when return is | nyamatongwe | 1 | -2/+2 | |
hit at start of line. | |||||
2010-03-13 | Adding const to methods where possible. | nyamatongwe | 1 | -2/+2 | |
2009-06-24 | Some extra const constraints added while working on discontiguous selection. | nyamatongwe | 1 | -2/+2 | |
2009-06-10 | Clear out per-line data when all contents removed. | nyamatongwe | 1 | -0/+1 | |
2009-04-19 | Added UNDO_MAY_COALESCE flag to AddUndoAction. | nyamatongwe | 1 | -2/+2 | |
2009-04-12 | Updated for new way of handling per-line data. | nyamatongwe | 1 | -53/+17 | |
2009-04-04 | Added AddUndoAction call for adding application actions into undo stack. | nyamatongwe | 1 | -1/+2 | |
2008-04-27 | Implemented GetCharacterPointer feature. | nyamatongwe | 1 | -0/+1 | |
2007-07-27 | Changed lineStates to a SplitVector so that it supports insert and delete | nyamatongwe | 1 | -1/+3 | |
so inserting and deleting lines does not cause a really large number of changed values under most circumstances leading to fewer notifications. SVector is no longer used. | |||||
2007-07-08 | Added const to methods that should not logically need to modify object. | nyamatongwe | 1 | -6/+6 | |
2007-06-01 | integrate OS X support for scintilla. a big patch with a little commit ↵ | scaraveo | 1 | -0/+8 | |
message :) - now uses namespaces (optionally for non-os x) to avoid conflicts with OS X libraries - several fixes in the OS X layer since the branch was commited in 2005 - used in Komodo since 2005, so pretty stable | |||||
2007-01-02 | Separated the cell buffer into substance and style buffers. | nyamatongwe | 1 | -12/+6 | |
2007-01-01 | Major change to CellBuffer class with addition of Partitioning class and ↵ | nyamatongwe | 1 | -41/+28 | |
SplitVector template. Inserting and deleting lines are made more efficient by lessening the amount of per line information copied. Marker data is only allocated for each line if markers are added. | |||||
2006-10-17 | Armel Asselin contributed a feature that adds the flag SC_STARTACTION to | nyamatongwe | 1 | -3/+3 | |
modification notifications where the modification is the first step of an undo transaction. This is used to synchronize with the container's undo stack. | |||||
2005-12-11 | Patch from Armel Asselin in RFE 1377661 to store positions in undo stack | nyamatongwe | 1 | -1/+0 | |
in terms of document (cell) position rather than byte position. Will help allow expansion to more than 2 bytes per cell. | |||||
2004-06-23 | Delete all markers for a particular marker number now deletes | nyamatongwe | 1 | -2/+2 | |
multiple markers on one line. | |||||
2004-04-12 | Comments from Philippe. | nyamatongwe | 1 | -7/+9 | |