summaryrefslogtreecommitdiffstats
path: root/bin/ksh/emacs.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1999-08-04 19:11:13 +0000
committermillert <millert@openbsd.org>1999-08-04 19:11:13 +0000
commit5f5c4dc1d86f5e93b9ac33fd2d68aed3f8c67a33 (patch)
treeb827bfc2c857846b334feaca5fbfeb3a64693226 /bin/ksh/emacs.c
parento Use __progname (diff)
downloadwireguard-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.c3
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, '*' },