diff options
author | Neil <nyamatongwe@gmail.com> | 2024-02-16 09:52:43 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-02-16 09:52:43 +1100 |
commit | f39367fc4c7af72caef8e20b1e9b1a038e242b0a (patch) | |
tree | b5f2fddf5ad5d2b79e72e93ebefa8cf8e7abe4d4 /include/Scintilla.h | |
parent | 1681b7fc9da6d455ab73a96816a47f6ba263017c (diff) | |
download | scintilla-mirror-f39367fc4c7af72caef8e20b1e9b1a038e242b0a.tar.gz |
Implement detach point access with SCI_SETUNDODETACH and SCI_GETUNDODETACH.
Write more documentation for undo history.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index be537abad..4ea264d8e 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -342,15 +342,17 @@ typedef sptr_t (*SciFnDirectStatus)(sptr_t ptr, unsigned int iMessage, uptr_t wP #define SCI_GETUNDOACTIONS 2790 #define SCI_SETUNDOSAVEPOINT 2791 #define SCI_GETUNDOSAVEPOINT 2792 -#define SCI_SETUNDOCURRENT 2793 -#define SCI_GETUNDOCURRENT 2794 +#define SCI_SETUNDODETACH 2793 +#define SCI_GETUNDODETACH 2794 #define SCI_SETUNDOTENTATIVE 2795 #define SCI_GETUNDOTENTATIVE 2796 -#define SCI_PUSHUNDOACTIONTYPE 2797 -#define SCI_CHANGELASTUNDOACTIONTEXT 2798 -#define SCI_GETUNDOACTIONTYPE 2799 -#define SCI_GETUNDOACTIONPOSITION 2800 -#define SCI_GETUNDOACTIONTEXT 2801 +#define SCI_SETUNDOCURRENT 2797 +#define SCI_GETUNDOCURRENT 2798 +#define SCI_PUSHUNDOACTIONTYPE 2800 +#define SCI_CHANGELASTUNDOACTIONTEXT 2801 +#define SCI_GETUNDOACTIONTYPE 2802 +#define SCI_GETUNDOACTIONPOSITION 2803 +#define SCI_GETUNDOACTIONTEXT 2804 #define INDIC_PLAIN 0 #define INDIC_SQUIGGLE 1 #define INDIC_TT 2 |