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
2003-09-28
Hotspot improvements from Simon, including setting to
nyamatongwe
1
-3
/
+7
2003-09-07
Ensure word selection doesn't decompose DBCS characters.
nyamatongwe
1
-1
/
+1
2003-09-02
Fixed hang when searching backwards in UTF-8 file for string
nyamatongwe
1
-1
/
+1
2003-07-26
Fix to make backwards regular expression searches not skip over text.
nyamatongwe
1
-4
/
+4
2003-07-26
Patch from Yair Siegel to include the string being inserted in a
nyamatongwe
1
-1
/
+1
2003-04-18
New methods for finding the next or previous position taking multi byte
nyamatongwe
1
-24
/
+15
2003-03-28
Jakub's paragraph movement commands.
nyamatongwe
1
-1
/
+28
2003-03-20
Patch from Simon Steele to implement the hotspot style and associated
nyamatongwe
1
-0
/
+13
2003-03-06
Avoiding infinite loop in regex search backwards for ^
nyamatongwe
1
-1
/
+2
2003-03-04
Patch from Jakub to optionally implement more POSIX compatible regular
nyamatongwe
1
-11
/
+25
2003-02-15
Updating version numbers and copyright.
nyamatongwe
1
-1
/
+1
2003-02-07
WordPartLeft and WordPartRight made safe for non-ASCII.
nyamatongwe
1
-27
/
+56
2003-01-18
Removed special casing of '^' and '$' that tried to prevent hangs. This is
nyamatongwe
1
-12
/
+0
2003-01-13
Simplified and corrected code.
nyamatongwe
1
-51
/
+17
2003-01-12
Changes to make DBCS work on GTK+ and handle DBCS sequences longer than 2 bytes.
nyamatongwe
1
-21
/
+41
2002-10-08
Extra safety by anding mask into styles being set.
nyamatongwe
1
-6
/
+7
2002-10-03
Fixed infinite loop finding zero width match at end of range.
nyamatongwe
1
-1
/
+1
2002-09-15
Made backwards regex work better with more complex regular expressions.
nyamatongwe
1
-10
/
+3
2002-09-15
Made reverse regex searches work a bit.
nyamatongwe
1
-10
/
+28
2002-07-28
Changed styling notifications to only include the range up to the last
nyamatongwe
1
-4
/
+7
2002-07-26
Patch from John Ehresman to return false from styling operations when
nyamatongwe
1
-8
/
+19
2002-04-21
Some Win64 compatibility and size_t correctness.
nyamatongwe
1
-4
/
+5
2002-04-04
Improved caret movement in read-only mode by handling more cases where text i...
nyamatongwe
1
-14
/
+6
2002-04-03
Enhancements to read-only mode to stop caret moving when typing or deleting.
nyamatongwe
1
-18
/
+26
2002-02-28
Line layout cache feature added.
nyamatongwe
1
-0
/
+7
2002-02-12
Made lexer objects const so they do not show up in map as static / globals.
nyamatongwe
1
-1
/
+1
2002-02-11
Changes to tighten up styling beyond the bounds of the document.
nyamatongwe
1
-0
/
+1
2002-01-18
Updated copyrights for 2002.
nyamatongwe
1
-1
/
+1
2002-01-13
Added option to autocompletion AutoCSetDropRestOfWord which removes any
nyamatongwe
1
-3
/
+6
2001-12-23
Fixed bug with finding a column when there is a tab in the line.
nyamatongwe
1
-0
/
+1
2001-12-20
Unicode and multi-byte fixes to edge display and column number calculation.
nyamatongwe
1
-5
/
+29
2001-11-27
Changed some tests for non-ASCII characters from "> 0x80" to ">= 0x80".
nyamatongwe
1
-2
/
+2
2001-10-28
Fixed Platform changes for GTK+ and hid most of the implementation of
nyamatongwe
1
-11
/
+0
2001-10-28
Removed platform-specific headers from Platform.h and thus stopped
nyamatongwe
1
-2
/
+2
2001-10-25
Changed definition of word to either be a sequence of word characters or
nyamatongwe
1
-32
/
+49
2001-09-07
Deleting 0 characters has no effect - no notification or undo action.
nyamatongwe
1
-1
/
+3
2001-08-20
Removed redundant expression.
nyamatongwe
1
-1
/
+1
2001-07-03
Simplified by removal of stylingPos variable as it mostly shadowed
nyamatongwe
1
-9
/
+6
2001-05-31
Fixed bug where highlighting was not performed when last character
nyamatongwe
1
-1
/
+4
2001-05-14
Merged patch from Michele to add ability for tab key to perform indent when
nyamatongwe
1
-10
/
+13
2001-04-30
When doing regexp searches, start position is moved on from end of line
nyamatongwe
1
-3
/
+6
2001-04-29
Addition of new target methods - versions of ReplaceTarget that take counted
nyamatongwe
1
-14
/
+30
2001-04-12
Changed modification from setting a fold level to indicate that the marker
nyamatongwe
1
-1
/
+2
2001-04-09
Philippe provided fix for EM_GETLINE and reformatting.
nyamatongwe
1
-29
/
+42
2001-04-06
Made regular expression searching work on a line by line basis, made ^ and
nyamatongwe
1
-13
/
+27
2001-04-05
Replace target functionality to make find and replace operations faster
nyamatongwe
1
-9
/
+57
2001-04-04
Moved to public domain regular expresion implementation.
nyamatongwe
1
-20
/
+36
2001-04-04
Avoid compiler and BoundsChecker warnings.
nyamatongwe
1
-5
/
+22
2001-04-03
Regular expression find support.
nyamatongwe
1
-53
/
+102
2001-03-30
Undo coalescing now allows deletes of size 1 or 2 to be coalesced.
nyamatongwe
1
-99
/
+99
[next]