diff options
author | nyamatongwe <unknown> | 2003-10-27 12:13:16 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-10-27 12:13:16 +0000 |
commit | eb8608f6b17d147ca3217e4237d602cf5933d9a2 (patch) | |
tree | b7792180becaeeba46b43bd476e503a349e6e57f /src/Document.h | |
parent | 696c95c34cc90a55e716ec070a3dd31ce958520c (diff) | |
download | scintilla-mirror-eb8608f6b17d147ca3217e4237d602cf5933d9a2.tar.gz |
Patches from Roy Wood:
Word movement to end of word.
Stuttered page movement.
User defined keyboard accelerators on GTK+.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h index 4b44655f3..f811bf077 100644 --- a/src/Document.h +++ b/src/Document.h @@ -190,6 +190,7 @@ public: void Indent(bool forwards); int ExtendWordSelect(int pos, int delta, bool onlyWordCharacters=false); int NextWordStart(int pos, int delta); + int NextWordEnd(int pos, int delta); int Length() { return cb.Length(); } long FindText(int minPos, int maxPos, const char *s, bool caseSensitive, bool word, bool wordStart, bool regExp, bool posix, int *length); |