aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.cxx
AgeCommit message (Expand)AuthorFilesLines
2013-07-21Replace all instances of isascii with Scintilla-specific IsASCII.Neil1-6/+6
2013-07-11Include case conversion data in Scintilla so that all platforms will performNeil1-41/+1
2013-06-29Bug: [#1483]. Split GetRelativePosition into 2 calls one for moving between c...Neil1-23/+31
2013-06-27Bug: [#1483]. Adding StyleContext::GetRelativeCharacter for character-oriente...nyamatongwe1-0/+65
2013-05-24Made methods const where they can be and are logically const as well.nyamatongwe1-15/+15
2013-05-05Removed nethods that are no longer used and are less safe than alternatives.nyamatongwe1-29/+0
2013-05-04Replacing raw pointers and allocations with std::string.nyamatongwe1-4/+3
2013-05-01Replacing raw pointers and allocations with std::vector and std::string.nyamatongwe1-0/+22
2013-05-01Replacing raw pointer and allocation with std::string.nyamatongwe1-47/+16
2013-04-28Use std::vector for list of watchers instead of manual management.nyamatongwe1-51/+28
2013-04-24Cosmetic: remove line-end whitespace.nyamatongwe1-6/+6
2013-04-19Remove unused methods.nyamatongwe1-36/+0
2013-04-17Disallow undo and redo when not collecting undo as it is likely that the docu...nyamatongwe1-2/+2
2013-04-09Slightly better behaviour for regular expression search in DBCS: ensure end ofnyamatongwe1-0/+2
2013-01-19Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document,nyamatongwe1-1/+33
2013-01-19To allow for new line end sequences implement IsPositionInLineEnd on thenyamatongwe1-0/+4
2013-01-19Implement APIs for Unicode line ends and substyles and expose tonyamatongwe1-1/+19
2012-09-04Cache the CaseFolder object between FindText calls so that finding many insta...nyamatongwe1-1/+23
2012-07-02Remove functions provided by headers.nyamatongwe1-9/+0
2012-07-02Make IsLowerCase and IsUpperCase not depend on non-portable isascii, takenyamatongwe1-8/+0
2012-06-17Use std::string instead of fixed size strings.nyamatongwe1-12/+9
2012-06-16Redraw margin when changing margin styles.nyamatongwe1-0/+2
2012-06-04Properly position caret after undoing coalesced delete operations. Bug #3523326.Marko Njezic1-4/+27
2012-06-04Validate length of deletion: negative values caused crashes.nyamatongwe1-1/+1
2012-05-29add CharClassifier::GetCharsOfClassMook1-0/+4
2012-05-26Use standardised and more stringent UTF8Classify for determining validity andnyamatongwe1-58/+61
2012-05-26For case-insensitive UTF-8 searching, use UTF8Classify for finding validnyamatongwe1-27/+23
2012-05-26Optimize case-sensitive searching by hoisting the first character of searchnyamatongwe1-6/+9
2012-05-26Optimize UTF-8 character length calculations by using an array.nyamatongwe1-17/+8
2012-04-14Make FindColumn() return correct position when column falls inside tab width....Marko Njezic1-0/+2
2012-04-14Remove dead code. Feature #3517596.nyamatongwe1-1/+0
2012-04-14Remove isindentchar as it duplicated IsSpaceOrTab. Made IsSpaceOrTab static. ...nyamatongwe1-6/+2
2012-04-14Remove GoodTrailByte as it duplicated IsTrailByte. Simplified IsTrailByte. Fe...nyamatongwe1-7/+3
2012-03-27Protect against modifying annotations with a negative line number or a linenyamatongwe1-7/+11
2012-03-25Replace \0 by found text in regular expressions searchUnknown1-2/+2
2012-03-21Ensure segment discovery always makes progress even for invalid UTF-8.nyamatongwe1-1/+6
2012-03-03Fix crash caused by NULL pointer for SCI_MOVESELECTEDLINESDOWN. Bug #3496403.nyamatongwe1-1/+1
2011-11-26Removed unreachable code. Issue described in bug 3440534.nyamatongwe1-1/+1
2011-11-16Bug #3283519. CountCharacters added to count the number ofnyamatongwe1-0/+14
2011-10-26Implement ILoader interface so that clients can load documents fromnyamatongwe1-1/+17
2011-09-23Optimized MarkerNext so it can be much faster when no marker ever setnyamatongwe1-0/+4
2011-08-27Basing default eol mode on _WIN32 instead of __unix__ as OS X doesnyamatongwe1-3/+3
2011-07-12Fix case-insensitive search where folded form shorter. Bug #3362038.nyamatongwe1-4/+8
2011-07-12Fix Shift-JIS lead byte ranges to match Windows.nyamatongwe1-1/+2
2011-07-11Avoid shadowing of fields even for static methods to stop warnings.nyamatongwe1-4/+4
2011-07-02Folding related fixes. Initiated by bug #3323805.Marko Njezic1-91/+60
2011-06-25Add casts to avoid warnings from SDK 64-bit compiler.nyamatongwe1-7/+9
2011-06-08Fix regex search on the last line of search rangeMarko Njezic1-2/+3
2011-05-13Break measurement of text into reasonable sized segments similarnyamatongwe1-0/+49
2011-04-27Fixes for backwards regex search. Bug #3292659.nyamatongwe1-1/+8