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
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
2021-07-05
Feature [feature-requests:#1408] Remove IsDBCSLeadByteInvalid as only caller ...
Zufu Liu
1
-37
/
+0
2021-07-03
Feature [feature-requests:#1408] Simplify code, remove IsDBCSTrailByteInvalid.
Zufu Liu
1
-63
/
+13
2021-07-03
Feature [feature-requests:#1408] Use positive IsDBCSTrailByteNoExcept function
Zufu Liu
1
-2
/
+33
2021-07-02
Feature [feature-requests:#1408] Treat valid DBCS lead byte followed by invalid
Zufu Liu
1
-6
/
+13
2021-06-05
Avoid extra processing as value_or doesn't evaluate lazily.
Zufu Liu
1
-2
/
+2
2021-06-04
Bug [#2260]. Fix bug with SCI_GETLASTCHILD when lParam is -1.
Zufu Liu
1
-3
/
+2
2021-05-30
Fix GetFontQuality. Simplify code that calls FlagSet.
Neil
1
-1
/
+1
2021-05-28
Better exception handling for noexcept methods. More accurate noexcept marking.
Neil
1
-6
/
+12
2021-05-24
Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h
Neil
1
-151
/
+158
2021-05-20
Prefer Sci::invalidPosition to INVALID_POSITION as Scintilla.h will eventually
Neil
1
-4
/
+4
2021-05-20
Add LevelIsHeader and LevelIsWhitespace as fold levels will become enum class
Neil
1
-11
/
+11
2021-05-08
Feature [feature-requests:1373]. Make idle actions smoother by measuring
Neil
1
-4
/
+3
2021-05-08
Feature [feature-requests:1373]. Add methods for refining idle task durations.
Zufu Liu
1
-0
/
+18
2021-04-27
Rename CharacterSet and CharacterCategory modules in Scintilla to CharacterType
Neil
1
-2
/
+2
2021-04-05
Extract CharClassify::cc as CharacterClass and change to enum class.
Neil
1
-25
/
+25
2021-04-05
Change actionType to an enum class.
Neil
1
-15
/
+15
2021-03-18
Use unique_ptr for CaseFolderForEncoding to show transfer of ownership.
Neil
1
-2
/
+2
2021-03-18
std::optional is a basic vocabulary type that may be used widely so include
Neil
1
-0
/
+1
2021-03-18
Move assert and debug trace functions into their own header Debugging.h.
Neil
1
-2
/
+1
2021-03-17
Extract geometry and colour definitions from Platform.h into src/Geometry.h.
Neil
1
-0
/
+1
2020-08-21
Bounds checks for setting annotation style.
Mitchell Foral
1
-8
/
+12
[next]