diff options
| author | nyamatongwe <devnull@localhost> | 2002-08-02 11:33:18 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2002-08-02 11:33:18 +0000 |
| commit | 4ed5d9ed82301348ce447a53768523cfcf0ab01a (patch) | |
| tree | d8dc668361ec94a4ef3135bdcb03010203b8fad8 /src/Editor.h | |
| parent | 1b22463319ba303d1c7c11b5afd2a0d3d18750e4 (diff) | |
| download | scintilla-mirror-4ed5d9ed82301348ce447a53768523cfcf0ab01a.tar.gz | |
Added keyboard commands to go to start and end of display lines.
Diffstat (limited to 'src/Editor.h')
| -rw-r--r-- | src/Editor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 5c838ebce..800630bbb 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -403,9 +403,10 @@ protected: // ScintillaBase subclass needs access to much of Editor void PageMove(int direction, bool extend=false); void ChangeCaseOfSelection(bool makeUpperCase); void LineTranspose(); - virtual void CancelModes(); + virtual void CancelModes(); void NewLine(); void CursorUpOrDown(int direction, bool extend=false); + int StartEndDisplayLine(int pos, bool start); virtual int KeyCommand(unsigned int iMessage); virtual int KeyDefault(int /* key */, int /*modifiers*/); int KeyDown(int key, bool shift, bool ctrl, bool alt, bool *consumed=0); |
