* added bash_completion 20060301, it should be cleaned up.

* enable bash_completion loading in etc/profile. this fixes on the second part #2886.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30233 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2009-04-17 22:05:11 +00:00
parent f1bd4cfe8c
commit 07a283fec3
3 changed files with 9306 additions and 1 deletions

View File

@ -325,7 +325,7 @@ SEARCH on $(spellFiles)
= [ FDirName $(HAIKU_TOP) src apps mail ] ;
AddFilesToHaikuImage system etc word_dictionary : $(spellFiles) ;
local etcFiles = inputrc profile teapot.data ;
local etcFiles = bash_completion inputrc profile teapot.data ;
etcFiles = $(etcFiles:G=etc) ;
SEARCH on $(etcFiles) = [ FDirName $(HAIKU_TOP) data etc ] ;
etcFiles += <etc>termcap <etc>sysless <etc>sysless.in ;

9299
data/etc/bash_completion Normal file

File diff suppressed because it is too large Load Diff

View File

@ -92,3 +92,9 @@ alias which='whence'
function dir {
ls -lF "$@";
}
# enable programmable completion
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi