aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-08-02 11:33:18 +0000
committernyamatongwe <unknown>2002-08-02 11:33:18 +0000
commitbd9e60e9776f3c57fe42312ea7f64011dd350e8f (patch)
treed8dc668361ec94a4ef3135bdcb03010203b8fad8 /src/Editor.h
parent0a42f39c2ede3efac29478571a9713f20294f7e8 (diff)
downloadscintilla-mirror-bd9e60e9776f3c57fe42312ea7f64011dd350e8f.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.h3
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);