diff options
author | nyamatongwe <devnull@localhost> | 2010-03-11 10:21:29 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-03-11 10:21:29 +0000 |
commit | e86a669c757e195237e44c5fd13786ce39acb3ac (patch) | |
tree | cac1e613a55d874579c775c8cb681b275d26fa52 /include/Scintilla.h | |
parent | 66cc61744a596ee4b04dc568f05e07c3d8207d2a (diff) | |
download | scintilla-mirror-e86a669c757e195237e44c5fd13786ce39acb3ac.tar.gz |
Implemented multipaste as an option.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index a702fd90d..d1f4518fd 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -486,6 +486,10 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_SETFONTQUALITY 2611 #define SCI_GETFONTQUALITY 2612 #define SCI_SETFIRSTVISIBLELINE 2613 +#define SC_MULTIPASTE_ONCE 0 +#define SC_MULTIPASTE_EACH 1 +#define SCI_SETMULTIPASTE 2614 +#define SCI_GETMULTIPASTE 2615 #define SCI_TARGETFROMSELECTION 2287 #define SCI_LINESJOIN 2288 #define SCI_LINESSPLIT 2289 |