diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 4 | ||||
| -rw-r--r-- | include/Scintilla.iface | 9 | 
2 files changed, 13 insertions, 0 deletions
| diff --git a/include/Scintilla.h b/include/Scintilla.h index 38eaa0d43..af6fbdc02 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -376,6 +376,10 @@ typedef long (*SciFnDirect)(long ptr, unsigned int iMessage, unsigned long wPara  #define SC_CURSORWAIT 3  #define SCI_SETCURSOR 2386  #define SCI_GETCURSOR 2387 +#define SCI_WORDPARTLEFT 2390 +#define SCI_WORDPARTLEFTEXTEND 2391 +#define SCI_WORDPARTRIGHT 2392 +#define SCI_WORDPARTRIGHTEXTEND 2393  #define SCI_GRABFOCUS 2400  #define SCI_STARTRECORD 3001  #define SCI_STOPRECORD 3002 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 109972983..072babd69 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1015,6 +1015,15 @@ set void SetCursor=2386(int cursorType,)  # Get cursor type  get int GetCursor=2387(,) +# Move to the previous change in capitalistion +fun void WordPartLeft=2390(,) +# Move to the previous change in capitalistion extending selection to new caret position. +fun void WordPartLeftExtend=2391(,) +# Move to the change next in capitalistion +fun void WordPartRight=2392(,) +# Move to the next change in capitalistion extending selection to new caret position. +fun void WordPartRightExtend=2393(,) +  # Set the focus to this Scintilla widget.  # GTK+ Specific  fun void GrabFocus=2400(,) | 
