summaryrefslogtreecommitdiffstats
path: root/input-keys.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-12-22 17:26:51 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-12-22 17:26:51 +0000
commitb4574799045717affdf32263091af01a969d498a (patch)
tree06a424e80d94290e7baf6cef71781bf539b7d1c5 /input-keys.c
parentdb39fd8503737a7f93d9311ac7d93c318c9426eb (diff)
Make home and end work.
Diffstat (limited to 'input-keys.c')
-rw-r--r--input-keys.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/input-keys.c b/input-keys.c
index 190e8a39..69e0f859 100644
--- a/input-keys.c
+++ b/input-keys.c
@@ -1,4 +1,4 @@
-/* $Id: input-keys.c,v 1.14 2008-07-24 21:42:40 nicm Exp $ */
+/* $Id: input-keys.c,v 1.15 2008-12-22 17:26:51 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -43,12 +43,12 @@ struct {
{ KEYC_F10, "\033[21~", 0 },
{ KEYC_F11, "\033[23~", 0 },
{ KEYC_F12, "\033[24~", 0 },
- { KEYC_FIND, "\033[1~", 0 },
{ KEYC_DC, "\033[3~", 0 },
{ KEYC_IC, "\033[2~", 0 },
{ KEYC_NPAGE, "\033[6~", 0 },
{ KEYC_PPAGE, "\033[5~", 0 },
- { KEYC_SELECT, "\033[4~", 0 },
+ { KEYC_HOME, "\033[1~", 0 },
+ { KEYC_END, "\033[4~", 0 },
/* Arrow keys. Cursor versions must come first. */
{ KEYC_UP, "\033OA", INPUTKEY_CURSOR },