index
:
scintilla-mirror
master
sciteco-dev-pre-v2.0.0
sciteco-rel-5-1-3
sciteco-rel-5-3-4
sciteco-rel-5-5-2
sciteco-rel-5-5-4
sciteco-rel-5-5-7
Git mirror of the Scintilla editor component. Referenced by the SciTECO repository.
Robin Haberkorn
about
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
CellBuffer.cxx
Age
Commit message (
Expand
)
Author
Files
Lines
2019-11-01
Avoid calling vector::shrink_to_fit in destructors as it is not noexcept.
Neil
1
-1
/
+0
2019-09-28
Remove virtual call in constructor to stop warnings.
Neil
1
-1
/
+0
2019-09-26
Remove extraneous check.
Neil
1
-3
/
+1
2019-06-04
Fix extra white space.
Neil
1
-2
/
+2
2019-06-04
Bug [#2104]. Use '%.0f' and casts to double to fix printf format string bugs.
Neil
1
-4
/
+8
2019-05-17
Fixed performance bug where line end positions were reset withot need when
Neil
1
-1
/
+0
2019-04-28
Declare reading methods as noexcept where reasonable.
Neil
1
-14
/
+14
2018-10-11
Replace NULL and 0 with nullptr in clear cases of pure C++ code.
Neil
1
-3
/
+3
2018-10-09
Improve performance of text insertion when Unicode line indexing off.
Neil
1
-7
/
+15
2018-07-10
Need <string> for std::string.
Neil Hodgson
1
-0
/
+1
2018-07-10
Optional indexing of line starts in UTF-8 documents by UTF-32 code points and
Neil
1
-6
/
+328
2018-05-14
Include <string_view> to allow future use in Platform interface and Unicode.
Neil
1
-0
/
+1
2018-04-28
Delete standard functions on classes where there could be attempts to copy.
Neil
1
-0
/
+5
2018-04-24
Feature [feature-requests:#1215]. Make Action move constructor noexcept and use
Neil
1
-8
/
+0
2018-04-22
Remove casts between char and unsigned char where possible.
Neil
1
-1
/
+1
2018-04-21
Tighten definition of regular expression iterators so they are noexcept and
Neil
1
-13
/
+13
2018-04-19
Casting changed in many places, due to change to 64-bit variables for 64-bit
Neil
1
-2
/
+6
2018-04-19
Casts that avoid warnings if Position and Line are different sizes.
Neil
1
-2
/
+2
2018-04-19
Remove potential allocation in destructor which could have thrown.
Neil
1
-1
/
+0
2018-04-19
Remove unnecessary extra allocation.
Neil
1
-2
/
+0
2018-04-17
Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than 2 GigaBytes.
Neil
1
-2
/
+15
2018-04-17
Templatize LineVector so it can later be switched between 32-bits and 64-bits.
Neil
1
-8
/
+9
2018-04-14
Make some changes recommended by clang-tidy.
Neil Hodgson
1
-1
/
+1
2018-03-03
Split LineVector into interface and implementation classes to allow future
Neil
1
-58
/
+84
2018-03-01
Mark variables as const where simple.
Neil
1
-4
/
+4
2018-03-01
Use make_unique in preference to new.
Neil
1
-1
/
+1
2018-02-02
Implement SC_DOCUMENTOPTION_STYLES_NONE.
Neil
1
-5
/
+22
2018-01-26
Extend SplitVector to allow more than 2 billion elements on 64-bit systems.
Neil
1
-2
/
+2
2017-09-11
The Scintilla namespace is always active for internal symbols and for the lexer
Neil
1
-2
/
+0
2017-04-29
Use std::unique_ptr, std::vector, and move construction to simplify UndoHistory
Neil
1
-46
/
+22
2017-04-22
Include <memory> for std::unique_ptr.
Neil
1
-0
/
+1
2017-04-07
Check index before checking value at index.
Neil
1
-2
/
+2
2017-04-06
Added const where possible.
Neil
1
-16
/
+16
2017-04-01
Standardize on C++ headers, remove headers that aren't needed and add <cstddef>
Neil
1
-4
/
+5
2017-03-31
Using Sci::Position and Sci::Line to mark variables that are document positions
Neil
1
-37
/
+37
2015-12-31
Treat Unicode line ends like common line ends when maintaining fold state.
Neil
1
-0
/
+19
2015-07-27
Add Position.h as a place-holder and to allow #include "Position.h" in source.
Neil
1
-0
/
+1
2015-02-16
Fix bugs caused by deleting text with undo collection off when entering IME c...
Neil Hodgson
1
-0
/
+5
2014-10-20
Optimize retrieval of empty range.
Neil
1
-1
/
+1
2014-07-18
Added the tentative undo feature. This is useful for IMEs that want to display
Neil
1
-1
/
+39
2014-05-24
Removing style byte indicators.
Neil
1
-7
/
+6
2013-10-18
Avoid a spurious warning from Visual Studio 2013 Code Analysis.
Neil
1
-0
/
+4
2013-07-21
Normalising order of language headers.
Neil
1
-2
/
+2
2013-07-03
Make CellBuffer::DeleteChars return a pointer to the deleted data even
Neil
1
-6
/
+9
2013-07-03
Restore return of data from InsertString/DeleteChars.
nyamatongwe
1
-6
/
+5
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
-12
/
+10
2013-04-19
Using std::fill instead of a loop is much faster. As much as 4x on a large bl...
nyamatongwe
1
-0
/
+2
2013-01-26
Fixed unused value warning.
nyamatongwe
1
-2
/
+1
2013-01-19
Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document,
nyamatongwe
1
-7
/
+108
[next]