diff options
author | nyamatongwe <devnull@localhost> | 2003-02-23 02:00:53 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-02-23 02:00:53 +0000 |
commit | eb4c37657c76b04e3b261a568ac88d2f985390f7 (patch) | |
tree | 086ff9252089b45351b367a4cc3b4a62ce1c69ef /include/Scintilla.h | |
parent | 9453a45638f3f7d06f1db441d3d72615d0ca37c3 (diff) | |
download | scintilla-mirror-eb4c37657c76b04e3b261a568ac88d2f985390f7.tar.gz |
Patch from Bruce Dodson for a variant on home and end keys for wrapped
mode that go to the start/end of the current display line. A second hit
goes to the start/end of the document line.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 9f3b9ea34..ecdda8de1 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -454,6 +454,12 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_HOMEDISPLAYEXTEND 2346 #define SCI_LINEENDDISPLAY 2347 #define SCI_LINEENDDISPLAYEXTEND 2348 +#define SCI_HOMEWRAP 2349 +#define SCI_HOMEWRAPEXTEND 2450 +#define SCI_LINEENDWRAP 2451 +#define SCI_LINEENDWRAPEXTEND 2452 +#define SCI_VCHOMEWRAP 2453 +#define SCI_VCHOMEWRAPEXTEND 2454 #define SCI_MOVECARETINSIDEVIEW 2401 #define SCI_LINELENGTH 2350 #define SCI_BRACEHIGHLIGHT 2351 |