From 3682eb4fcbc4bfc35968beb5871055c3e267cc2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 26 Jan 2005 14:10:18 +0000 Subject: [PATCH] Changed the default for tab completion of symlinks to directories; as of bash 2.05 you would have to press the tab key twice to get the "/" appended at the end - not anymore :) git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11067 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bin/bash/lib/readline/complete.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/bin/bash/lib/readline/complete.c b/src/apps/bin/bash/lib/readline/complete.c index 21a9d70859..dbb98fa175 100644 --- a/src/apps/bin/bash/lib/readline/complete.c +++ b/src/apps/bin/bash/lib/readline/complete.c @@ -137,7 +137,7 @@ int _rl_complete_mark_directories = 1; readline-4.2a is disabled, and symlinks that point to directories have a slash appended (subject to the value of _rl_complete_mark_directories). This is user-settable via the mark-symlinked-directories variable. */ -int _rl_complete_mark_symlink_dirs = 0; +int _rl_complete_mark_symlink_dirs = 1; /* If non-zero, completions are printed horizontally in alphabetical order, like `ls -x'. */