aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <unknown>2013-01-19 11:40:47 +1100
committernyamatongwe <unknown>2013-01-19 11:40:47 +1100
commitf46c96ecb682ad736453f78f6709fca6c6911886 (patch)
tree30a15c456b96f3a1e7c988536d41350288ff4ef4 /include/Scintilla.iface
parentf0cd733f9f71a76b641546a2401636d7f8f3c1ed (diff)
downloadscintilla-mirror-f46c96ecb682ad736453f78f6709fca6c6911886.tar.gz
Support the three Unicode line ends NEL, LS, and PS in CellBuffer, Document,
Editor and the message interface. Will only be turned on for lexers that support Unicode line ends.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index eb77a584a..714f3ee93 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -2280,6 +2280,14 @@ enu LineEndType=SC_LINE_END_TYPE_
val SC_LINE_END_TYPE_DEFAULT=0
val SC_LINE_END_TYPE_UNICODE=1
+# Set the line end types that the application wants to use. May not be used if incompatible with lexer or encoding.
+set void SetLineEndTypesAllowed=2656(int lineEndBitSet,)
+
+# Get the line end types currently allowed.
+get int GetLineEndTypesAllowed=2657(,)
+
+# Get the line end types currently recognised. May be a subset of the allowed types due to lexer limitation.
+get int GetLineEndTypesActive=2658(,)
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)