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
sciteco-rel-5-5-8
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
/
Document.cxx
Age
Commit message (
Expand
)
Author
Files
Lines
2023-03-02
Add multithreaded wrap to significantly improve performance of wrapping large
Neil
1
-0
/
+4
2023-01-19
Feature [feature-requests:#1444] Move GetFoldParent from Document to LineLevels
Neil
1
-9
/
+2
2023-01-12
Feature [feature-requests:#1474] Simplify code.
Zufu Liu
1
-3
/
+4
2023-01-12
Feature [feature-requests:#1474] Simplify with InsertString(string_view).
Zufu Liu
1
-3
/
+2
2023-01-12
Feature [feature-requests:#1474] Move EOL string function to Document and return
Zufu Liu
1
-0
/
+10
2022-12-23
Bug [#2360]. Switch back from dynamic_cast to static_cast for per-line data
Mat Berchtold
1
-6
/
+6
2022-12-21
Bug [#2340]. Avoid repeated call in GetFoldParent for around 10% performance
Zufu Liu
1
-14
/
+8
2022-12-02
Detangle ASCII and multi-byte code for case-insenstive UTF-8 searches.
Neil
1
-21
/
+18
2022-12-02
Ensure variable is initialized.
Neil
1
-3
/
+4
2022-11-28
Bug [#2363]. Change 'paragraph up' commands SCI_PARAUP and SCI_PARAUPEXTEND to
Michael Heath
1
-1
/
+4
2022-11-24
Add const and noexcept where sensible.
Neil
1
-2
/
+2
2022-11-22
Add SCI_REPLACETARGETMINIMAL to change text without causing unchanged prefix and
Neil
1
-0
/
+11
2022-11-14
Fix last change with CharacterExtracted to work on Unix.
Neil
1
-1
/
+1
2022-11-12
Hoist common conversion from UTF-8 byte string into CharacterExtracted
Neil
1
-25
/
+19
2022-10-20
Change ScintillaBase::AutoCompleteInsert to take a string_view and add
Neil
1
-0
/
+4
2022-09-12
Remove NotifyLexerChanged notification from DocWatcher.
Neil
1
-8
/
+0
2022-08-17
Display bar marker correctly on last line of document.
Neil
1
-1
/
+1
2022-07-31
Added change history which can display document changes (modified, saved, ...)
Neil
1
-2
/
+26
2022-07-18
Bug [#2338] Enable multiline regex for gcc and clang when REGEX_MULTILINE def...
Jacky Yang
1
-0
/
+4
2022-07-17
Feature [feature-requests:#1441] Line state optimized to avoid excess allocat...
Zufu Liu
1
-1
/
+1
2022-07-04
Feature [feature-requests:#1442] Tighter checking of indices avoids handling
Zufu Liu
1
-2
/
+2
2022-05-01
Optimize case where there are no annotations
Neil
1
-0
/
+6
2022-01-13
Optimize GetColumn a little.
Neil
1
-0
/
+3
2021-11-24
For iterators, make constructors explicit, remove operators that are defaulted
Neil
1
-72
/
+17
2021-10-26
Explicit constructors.
Neil
1
-1
/
+1
2021-10-24
Grammar in comment.
Neil
1
-1
/
+1
2021-10-21
Feature [feature-requests:#1417] Use backward iteration to find space / control
Zufu Liu
1
-31
/
+58
2021-10-12
Feature [feature-requests:#1416] Prevent type mismatch.
Neil
1
-1
/
+1
2021-10-12
Feature [feature-requests:#1416] Use nullptr.
Neil
1
-9
/
+9
2021-10-05
Feature [feature-requests:#1417] Consolidate character classification functions
Neil
1
-62
/
+13
2021-09-30
Feature [feature-requests:#1416] Remove extra check that is never true and
Zufu Liu
1
-3
/
+1
2021-09-02
Bug [#2281] Fix crash with too many subexpressions in regular expression search
Neil
1
-1
/
+1
2021-08-24
Remove line end white space.
Neil
1
-1
/
+1
2021-08-22
Follow rule-of-zero / rule-of-5 where reasonable by removing standard operators
Neil
1
-5
/
+0
2021-08-22
Encapsulate an ILexer5* in LexerInstance class to simplify client code.
Neil
1
-0
/
+14
2021-07-17
Fix minor inconsistency with word searching results at start and end of document
Neil
1
-5
/
+9
2021-07-17
Extract word edge detection to prepare for fixing bug.
Neil
1
-8
/
+11
2021-07-15
Feature [feature-requests:#1370] Implement SCI_ALLOCATELINES to allocate indices
Zufu Liu
1
-0
/
+4
2021-07-16
Feature [feature-requests:#1381] Fix position returned when in 2nd segment.
Neil
1
-1
/
+1
2021-07-16
Feature [feature-requests:#1381] Avoid strlen and more complex comparison.
Zufu Liu
1
-3
/
+3
2021-07-15
Feature [feature-requests:#1381] Move SplitView to header so it can be used more
Neil
1
-33
/
+1
2021-07-14
Feature [feature-requests:#1408] More accurate handling of invalid DBCS byte
Neil
1
-3
/
+13
2021-07-05
Feature [feature-requests:#1408] Check both bytes of potential DBCS character
Zufu Liu
1
-4
/
+9
2021-07-12
Use SplitFindChar to rapidly seek for a byte value for case-sensitive searches.
Neil
1
-14
/
+62
2021-07-12
Create SplitView to avoid overhead of calling CellBuffer for reading characters.
Neil
1
-7
/
+44
2021-07-12
Optimize case-insensitive DBCS search.
Neil
1
-1
/
+1
2021-07-12
Rearrange and reformat code to minimize variable lifetime and bracket blocks.
Zufu Liu
1
-12
/
+21
2021-07-12
Feature [feature-requests:#1381] Optimize case sensitive search.
Zufu Liu
1
-4
/
+13
2021-07-12
Feature [feature-requests:#1381] Optimize case insensitive search for ASCII t...
Zufu Liu
1
-25
/
+48
2021-07-13
Restrict UTF8IsAscii to char and unsigned char to avoid failures when (signed)
Neil
1
-1
/
+1
[next]