aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-03-11 10:21:29 +0000
committernyamatongwe <devnull@localhost>2010-03-11 10:21:29 +0000
commite86a669c757e195237e44c5fd13786ce39acb3ac (patch)
treecac1e613a55d874579c775c8cb681b275d26fa52 /include/Scintilla.iface
parent66cc61744a596ee4b04dc568f05e07c3d8207d2a (diff)
downloadscintilla-mirror-e86a669c757e195237e44c5fd13786ce39acb3ac.tar.gz
Implemented multipaste as an option.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index f2c8f1ebf..67fcc6060 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1223,6 +1223,16 @@ get int GetFontQuality=2612(,)
# Scroll so that a display line is at the top of the display.
set void SetFirstVisibleLine=2613(int lineDisplay,)
+enu MultiPaste=SC_MULTIPASTE_
+val SC_MULTIPASTE_ONCE=0
+val SC_MULTIPASTE_EACH=1
+
+# Change the effect of pasting when there are multiple selections.
+set void SetMultiPaste=2614(int multiPaste,)
+
+# Retrieve the effect of pasting when there are multiple selections..
+get int GetMultiPaste=2615(,)
+
# Make the target range start and end be the same as the selection range start and end.
fun void TargetFromSelection=2287(,)