diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 1 | ||||
| -rw-r--r-- | include/Scintilla.iface | 3 | 
2 files changed, 4 insertions, 0 deletions
| diff --git a/include/Scintilla.h b/include/Scintilla.h index b997c0a5b..dbf6bcd93 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -638,6 +638,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,  #define SCI_LINECUT 2337  #define SCI_LINEDELETE 2338  #define SCI_LINETRANSPOSE 2339 +#define SCI_LINEREVERSE 2354  #define SCI_LINEDUPLICATE 2404  #define SCI_LOWERCASE 2340  #define SCI_UPPERCASE 2341 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 5aa5f8ee3..341044a72 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1614,6 +1614,9 @@ fun void LineDelete=2338(,)  # Switch the current line with the previous.  fun void LineTranspose=2339(,) +# Reverse order of selected lines. +fun void LineReverse=2354(,) +  # Duplicate the current line.  fun void LineDuplicate=2404(,) | 
