diff options
author | 1999-08-04 19:11:13 +0000 | |
---|---|---|
committer | 1999-08-04 19:11:13 +0000 | |
commit | 5f5c4dc1d86f5e93b9ac33fd2d68aed3f8c67a33 (patch) | |
tree | b827bfc2c857846b334feaca5fbfeb3a64693226 /bin/ksh/emacs.c | |
parent | o Use __progname (diff) | |
download | wireguard-openbsd-5f5c4dc1d86f5e93b9ac33fd2d68aed3f8c67a33.tar.xz wireguard-openbsd-5f5c4dc1d86f5e93b9ac33fd2d68aed3f8c67a33.zip |
Turn <tab> completion on by default for people used to bash, tcsh, etc...
Diffstat (limited to 'bin/ksh/emacs.c')
-rw-r--r-- | bin/ksh/emacs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ksh/emacs.c b/bin/ksh/emacs.c index afc20909918..ea035cf4cd0 100644 --- a/bin/ksh/emacs.c +++ b/bin/ksh/emacs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: emacs.c,v 1.10 1999/07/14 13:37:23 millert Exp $ */ +/* $OpenBSD: emacs.c,v 1.11 1999/08/04 19:11:13 millert Exp $ */ /* * Emacs-like command line editing and history @@ -272,6 +272,7 @@ static struct x_defbindings const x_defbindings[] = { { XFUNC_transpose, 0, CTRL('T') }, #endif { XFUNC_complete, 1, CTRL('[') }, + { XFUNC_complete, 0, CTRL('I') }, { XFUNC_comp_list, 1, '=' }, { XFUNC_enumerate, 1, '?' }, { XFUNC_expand, 1, '*' }, |