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
/
Document.cxx
Age
Commit message (
Expand
)
Author
Files
Lines
2024-09-28
Prefer member intializers.
Neil
1
-18
/
+18
2024-09-28
Remove private field that was never used.
Neil
1
-2
/
+0
2024-07-28
Add SCI_GETUNDOSEQUENCE to determine whether an undo sequence is active and its
Neil
1
-0
/
+4
2024-07-15
Simplify line-end insertions and conversions.
Neil
1
-15
/
+18
2024-05-23
Suppress some warnings from g++ 14.1 where a UTF-8 character has a maximum
Neil Hodgson
1
-0
/
+5
2024-03-08
Reformat with astyle.
Neil
1
-5
/
+5
2024-02-28
Add variant of UTF8Classify that takes a char* so that client code does not have
Neil
1
-1
/
+1
2024-02-16
Implement detach point access with SCI_SETUNDODETACH and SCI_GETUNDODETACH.
Neil
1
-4
/
+12
2024-02-15
Perform validation of undo state when SCI_SETUNDOCURRENT called, setting status
Neil
1
-1
/
+1
2024-02-09
Implement API to read and write undo history from applications.
Neil
1
-0
/
+48
2024-02-01
Add UndoAction class as internal type for undo actions and make Action a struct
Neil
1
-6
/
+6
2024-01-02
Simplify choosing caret position when undoing contiguous deletions.
Neil
1
-22
/
+6
2023-12-21
Bug [#2405]. Avoid character fragments in regular expression search results.
Zufu Liu
1
-4
/
+5
2023-12-20
Add IDocumentEditable interface for efficient interaction with document objects.
Neil
1
-2
/
+10
2023-12-14
Bug [#2405]. Fix regular expression bug in reverse direction where shortened
Zufu Liu
1
-20
/
+17
2023-12-14
Remove noexcept from MatchFlags since IsWordEndAt is not noexcept.
Neil
1
-1
/
+1
2023-12-12
Bug [#2405]. Fix regular expression assertion (^, $, \b. \B) failures when using
Zufu Liu
1
-28
/
+33
2023-12-02
Bug [#2157]. Fix regular expression search for word begin \< and word end \>.
Zufu Liu
1
-2
/
+5
2023-11-07
Feature [feature-requests:#1501] More use of LineStartPosition, LineEndPosition.
Zufu Liu
1
-2
/
+1
2023-11-02
Feature [feature-requests:#1500] Remove match text retrieval from MatchOnLines
Zufu Liu
1
-15
/
+11
2023-10-26
Add LineStartPosition to replace common idiom LineStart(LineFromPosition(x)) as
Neil
1
-5
/
+9
2023-10-26
Implement LineEnd method in CellBuffer as it is a basic function and only uses
Neil
1
-30
/
+7
2023-10-15
Bug [#2405]. Fix incorrect substitution when searching for a regular expression
Zufu Liu
1
-0
/
+8
2023-10-15
Use std::array for regex match positions as it will simplify copying.
Neil
1
-0
/
+1
2023-04-11
Follow rule-of-zero to omit standard methods.
Neil
1
-8
/
+1
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
[next]