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/ScintillaMessages.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/ScintillaMessages.h')
-rw-r--r-- | include/ScintillaMessages.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/include/ScintillaMessages.h b/include/ScintillaMessages.h index 5cff5ed26..a00ed44b4 100644 --- a/include/ScintillaMessages.h +++ b/include/ScintillaMessages.h @@ -174,15 +174,17 @@ enum class Message { GetUndoActions = 2790, SetUndoSavePoint = 2791, GetUndoSavePoint = 2792, - SetUndoCurrent = 2793, - GetUndoCurrent = 2794, + SetUndoDetach = 2793, + GetUndoDetach = 2794, SetUndoTentative = 2795, GetUndoTentative = 2796, - PushUndoActionType = 2797, - ChangeLastUndoActionText = 2798, - GetUndoActionType = 2799, - GetUndoActionPosition = 2800, - GetUndoActionText = 2801, + SetUndoCurrent = 2797, + GetUndoCurrent = 2798, + PushUndoActionType = 2800, + ChangeLastUndoActionText = 2801, + GetUndoActionType = 2802, + GetUndoActionPosition = 2803, + GetUndoActionText = 2804, IndicSetStyle = 2080, IndicGetStyle = 2081, IndicSetFore = 2082, |