diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2000-12-01 15:36:10 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2000-12-01 15:36:10 +0000 |
| commit | d3bc44f91c9fb7992955affa8f782534973604ab (patch) | |
| tree | 670c860f8e2860e7216ebcc76ac51f56dfcf55f3 | |
| parent | 689634a3ea12418e1238d5df5c3c2131fae3ae1f (diff) | |
| parent | b8d4dc6c68ea4c4b7942c0b188c18a5aca4f6396 (diff) | |
Notes
| -rw-r--r-- | contrib/nvi/cl/cl_bsd.c | 1 | ||||
| -rw-r--r-- | contrib/nvi/cl/cl_term.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/contrib/nvi/cl/cl_bsd.c b/contrib/nvi/cl/cl_bsd.c index 4a06a54af2f1..22124e5780b2 100644 --- a/contrib/nvi/cl/cl_bsd.c +++ b/contrib/nvi/cl/cl_bsd.c @@ -210,6 +210,7 @@ static const TL list[] = { "kdl1", "kL", /* Delete line. */ "ked", "kS", /* Delete to end of screen. */ "kel", "kE", /* Delete to eol. */ + "kend", "@7", /* Go to eol. */ "khome", "kh", /* Go to sol. */ "kich1", "kI", /* Insert at cursor. */ "kil1", "kA", /* Insert line. */ diff --git a/contrib/nvi/cl/cl_term.c b/contrib/nvi/cl/cl_term.c index e4007403870e..c36bb3830e9f 100644 --- a/contrib/nvi/cl/cl_term.c +++ b/contrib/nvi/cl/cl_term.c @@ -51,6 +51,7 @@ static TKLIST const c_tklist[] = { /* Command mappings. */ {"kel", "D", "delete to eol"}, {"kind", "\004", "scroll down"}, /* ^D */ {"kll", "$", "go to eol"}, + {"kend", "$", "go to eol"}, {"khome", "^", "go to sol"}, {"kich1", "i", "insert at cursor"}, {"kdl1", "dd", "delete line"}, |
