diff options
| author | nyamatongwe <devnull@localhost> | 2003-10-27 12:13:16 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2003-10-27 12:13:16 +0000 |
| commit | 04ee9eeae49c2128d5c171006e8451f5664476bd (patch) | |
| tree | b7792180becaeeba46b43bd476e503a349e6e57f /include/Scintilla.iface | |
| parent | 8f89d86cf120ccb03688dcf1eee39683c75b9136 (diff) | |
| download | scintilla-mirror-04ee9eeae49c2128d5c171006e8451f5664476bd.tar.gz | |
Patches from Roy Wood:
Word movement to end of word.
Stuttered page movement.
User defined keyboard accelerators on GTK+.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 5aea37875..1e4d0db34 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1513,6 +1513,32 @@ fun void PageUpRectExtend=2433(,) fun void PageDownRectExtend=2434(,) +# Move caret to top of page, or one page up if already at top of page. +fun void StutteredPageUp=2435(,) + +# Move caret to top of page, or one page up if already at top of page, extending selection to new caret position. +fun void StutteredPageUpExtend=2436(,) + +# Move caret to bottom of page, or one page down if already at bottom of page. +fun void StutteredPageDown=2437(,) + +# Move caret to bottom of page, or one page down if already at bottom of page, extending selection to new caret position. +fun void StutteredPageDownExtend=2438(,) + + +# Move caret left one word, position cursor at end of word. +fun void WordLeftEnd=2439(,) + +# Move caret left one word, position cursor at end of word, extending selection to new caret position. +fun void WordLeftEndExtend=2440(,) + +# Move caret right one word, position cursor at end of word. +fun void WordRightEnd=2441(,) + +# Move caret right one word, position cursor at end of word, extending selection to new caret position. +fun void WordRightEndExtend=2442(,) + + # Start notifying the container of all key presses and commands. fun void StartRecord=3001(,) |
