aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-08-02 11:33:18 +0000
committernyamatongwe <devnull@localhost>2002-08-02 11:33:18 +0000
commit4ed5d9ed82301348ce447a53768523cfcf0ab01a (patch)
treed8dc668361ec94a4ef3135bdcb03010203b8fad8 /include/Scintilla.iface
parent1b22463319ba303d1c7c11b5afd2a0d3d18750e4 (diff)
downloadscintilla-mirror-4ed5d9ed82301348ce447a53768523cfcf0ab01a.tar.gz
Added keyboard commands to go to start and end of display lines.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index f6e259efc..0f06d0c88 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1119,6 +1119,20 @@ fun void LineScrollUp=2343(,)
# Will not delete the character before at the start of a line.
fun void DeleteBackNotLine=2344(,)
+# Move caret to first position on display line.
+fun void HomeDisplay=2345(,)
+
+# Move caret to first position on display line extending selection to
+# new caret position.
+fun void HomeDisplayExtend=2346(,)
+
+# Move caret to last position on display line.
+fun void LineEndDisplay=2347(,)
+
+# Move caret to last position on display line extending selection to new
+# caret position.
+fun void LineEndDisplayExtend=2348(,)
+
# Move the caret inside current view if it's not there already.
fun void MoveCaretInsideView=2401(,)