aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2005-11-10 00:42:42 +0000
committernyamatongwe <devnull@localhost>2005-11-10 00:42:42 +0000
commit6ea2be4efbe8d048caf512b2946ad8e0c4ee47bc (patch)
tree16358314342c9485ad63cd5c09f4444830f85bd5 /include
parentf6aff0a47a21212903ad86337b1e9eb52aef571d (diff)
downloadscintilla-mirror-6ea2be4efbe8d048caf512b2946ad8e0c4ee47bc.tar.gz
Added selection duplicate command.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.h1
-rw-r--r--include/Scintilla.iface3
2 files changed, 4 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index a82c00fda..b4ed329f7 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -606,6 +606,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_TOGGLECARETSTICKY 2459
#define SCI_SETPASTECONVERTENDINGS 2467
#define SCI_GETPASTECONVERTENDINGS 2468
+#define SCI_SELECTIONDUPLICATE 2469
#define SCI_STARTRECORD 3001
#define SCI_STOPRECORD 3002
#define SCI_SETLEXER 4001
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 2c2272cd1..d20604819 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1638,6 +1638,9 @@ set void SetPasteConvertEndings=2467(bool convert,)
# Get convert-on-paste setting
get bool GetPasteConvertEndings=2468(,)
+# Duplicate the selection. If selection empty duplicate the line containing the caret.
+fun void SelectionDuplicate=2469(,)
+
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)