diff options
author | tb@openbsd.org <tb@openbsd.org> | 2019-07-10 09:04:27 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-07-12 06:07:31 +0200 |
commit | b9b0f2ac9625933db53a35b1c1ce423876630558 (patch) | |
tree | 69281a3d907ec6f47fef1c47efa83516f5558acb /sftp.c | |
parent | fix typo that prevented detection of Linux VRF (diff) | |
download | openssh-b9b0f2ac9625933db53a35b1c1ce423876630558.tar.xz openssh-b9b0f2ac9625933db53a35b1c1ce423876630558.zip |
upstream: Fix a typo and make <esc><right> move right to the
closest end of a word just like <esc><left> moves left to the closest
beginning of a word.
ok djm
OpenBSD-Commit-ID: 6afe01b05ed52d8b12eb1fda6e9af5afb5e198ee
Diffstat (limited to 'sftp.c')
-rw-r--r-- | sftp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: sftp.c,v 1.193 2019/06/19 20:12:44 jmc Exp $ */ +/* $OpenBSD: sftp.c,v 1.194 2019/07/10 07:04:27 tb Exp $ */ /* * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> * @@ -2189,7 +2189,7 @@ interactive_loop(struct sftp_conn *conn, char *file1, char *file2) el_set(el, EL_BIND, "^I", "ftp-complete", NULL); /* enable ctrl-left-arrow and ctrl-right-arrow */ el_set(el, EL_BIND, "\\e[1;5C", "em-next-word", NULL); - el_set(el, EL_BIND, "\\e[5C", "em-next-word", NULL); + el_set(el, EL_BIND, "\\e\\e[C", "em-next-word", NULL); el_set(el, EL_BIND, "\\e[1;5D", "ed-prev-word", NULL); el_set(el, EL_BIND, "\\e\\e[D", "ed-prev-word", NULL); /* make ^w match ksh behaviour */ |