]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: Fix a typo and make <esc><right> move right to the
authortb@openbsd.org <tb@openbsd.org>
Wed, 10 Jul 2019 07:04:27 +0000 (07:04 +0000)
committerDamien Miller <djm@mindrot.org>
Fri, 12 Jul 2019 04:07:31 +0000 (14:07 +1000)
closest end of a word just like <esc><left> moves left to the closest
beginning of a word.

ok djm

OpenBSD-Commit-ID: 6afe01b05ed52d8b12eb1fda6e9af5afb5e198ee

sftp.c

diff --git a/sftp.c b/sftp.c
index d3e118919928a851d54d465bba38a48c1ddafc87..fa833d25dc4fe4a63c2591a5ef9bac45a4cb4e79 100644 (file)
--- a/sftp.c
+++ b/sftp.c
@@ -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 */