aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-01-13 01:10:10 +0000
committernyamatongwe <unknown>2002-01-13 01:10:10 +0000
commite468d988b369e61696608fc9ccd52c6d746cb735 (patch)
tree7a1bd0b59cc23e517090aed5a2616b4f0a2126ed /src/Document.h
parent3e4b3fd45dfd68e74824320f909ef19c67f1b6d2 (diff)
downloadscintilla-mirror-e468d988b369e61696608fc9ccd52c6d746cb735.tar.gz
Added option to autocompletion AutoCSetDropRestOfWord which removes any
word characters following an insertion made by auto-completion. Bundled the changes made by an autocompletion into one undo action.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h
index 09814fec8..51cfa9d53 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -177,7 +177,7 @@ public:
int GetFoldParent(int line);
void Indent(bool forwards);
- int ExtendWordSelect(int pos, int delta);
+ int ExtendWordSelect(int pos, int delta, bool onlyWordCharacters=false);
int NextWordStart(int pos, int delta);
int Length() { return cb.Length(); }
long FindText(int minPos, int maxPos, const char *s,