aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-11-01 11:40:37 +0000
committernyamatongwe <unknown>2003-11-01 11:40:37 +0000
commit1cb0c37b721cfa4909a260a48aa82999f61cacc0 (patch)
treed176377cdf80118ee4a7fc9363f14492317c5fb3 /include
parent40780f412ede5e9a0aee4378d22909172ad3ace3 (diff)
downloadscintilla-mirror-1cb0c37b721cfa4909a260a48aa82999f61cacc0.tar.gz
Patch from Roy Wood to allow changing the characters that are in the
whitespace class.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.h1
-rw-r--r--include/Scintilla.iface2
2 files changed, 3 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index d0b788e47..44a608d9f 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -567,6 +567,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_WORDLEFTENDEXTEND 2440
#define SCI_WORDRIGHTEND 2441
#define SCI_WORDRIGHTENDEXTEND 2442
+#define SCI_SETWHITESPACECHARS 2443
#define SCI_STARTRECORD 3001
#define SCI_STOPRECORD 3002
#define SCI_SETLEXER 4001
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 1e4d0db34..93173d07e 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1538,6 +1538,8 @@ fun void WordRightEnd=2441(,)
# Move caret right one word, position cursor at end of word, extending selection to new caret position.
fun void WordRightEndExtend=2442(,)
+# Set the set of characters making up whitespace for when moving or selecting by word.
+set void SetWhitespaceChars=2443(, string characters)
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)