diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sftp.c | 7 |
2 files changed, 10 insertions, 1 deletions
@@ -36,6 +36,10 @@ | |||
36 | being initialised so was starting at a random value from the heap | 36 | being initialised so was starting at a random value from the heap |
37 | (harmless, but confusing). 2) some error conditions were not being | 37 | (harmless, but confusing). 2) some error conditions were not being |
38 | propagated back to the caller | 38 | propagated back to the caller |
39 | - djm@cvs.openbsd.org 2013/08/09 03:56:42 | ||
40 | [sftp.c] | ||
41 | enable ctrl-left-arrow and ctrl-right-arrow to move forward/back a word; | ||
42 | matching ksh's relatively recent change. | ||
39 | 43 | ||
40 | 20130808 | 44 | 20130808 |
41 | - (dtucker) [regress/Makefile regress/test-exec.sh] Don't try to use test -nt | 45 | - (dtucker) [regress/Makefile regress/test-exec.sh] Don't try to use test -nt |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sftp.c,v 1.153 2013/08/09 03:37:25 djm Exp $ */ | 1 | /* $OpenBSD: sftp.c,v 1.154 2013/08/09 03:56:42 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> | 3 | * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> |
4 | * | 4 | * |
@@ -2008,6 +2008,11 @@ interactive_loop(struct sftp_conn *conn, char *file1, char *file2) | |||
2008 | complete_ctx.remote_pathp = &remote_path; | 2008 | complete_ctx.remote_pathp = &remote_path; |
2009 | el_set(el, EL_CLIENTDATA, (void*)&complete_ctx); | 2009 | el_set(el, EL_CLIENTDATA, (void*)&complete_ctx); |
2010 | el_set(el, EL_BIND, "^I", "ftp-complete", NULL); | 2010 | el_set(el, EL_BIND, "^I", "ftp-complete", NULL); |
2011 | /* enable ctrl-left-arrow and ctrl-right-arrow */ | ||
2012 | el_set(el, EL_BIND, "\\e[1;5C", "em-next-word", NULL); | ||
2013 | el_set(el, EL_BIND, "\\e[5C", "em-next-word", NULL); | ||
2014 | el_set(el, EL_BIND, "\\e[1;5D", "ed-prev-word", NULL); | ||
2015 | el_set(el, EL_BIND, "\\e\\e[D", "ed-prev-word", NULL); | ||
2011 | } | 2016 | } |
2012 | #endif /* USE_LIBEDIT */ | 2017 | #endif /* USE_LIBEDIT */ |
2013 | 2018 | ||