Odpowiedzi:
jest to kontrolowane przez / etc / bash_completion
możesz skomentować kod rozszerzenia w _expand (), jeśli ci się nie podoba.
oto moja wersja w Fedorze 17, ale twoja powinna być podobna:
# This function expands tildes in pathnames
#
_expand()
{
# FIXME: Why was this here?
#[ "$cur" != "${cur%\\}" ] && cur="$cur\\"
# Expand ~username type directory specifications. We want to expand
# ~foo/... to /home/foo/... to avoid problems when $cur starting with
# a tilde is fed to commands and ending up quoted instead of expanded.
if [[ "$cur" == \~*/* ]]; then
eval cur=$cur
elif [[ "$cur" == \~* ]]; then
cur=${cur#\~}
COMPREPLY=( $( compgen -P '~' -u "$cur" ) )
[ ${#COMPREPLY[@]} -eq 1 ] && eval COMPREPLY[0]=${COMPREPLY[0]}
return ${#COMPREPLY[@]}
fi
}
function _expand() { :;}
w sobie ~/.bashrc
.
bash
może zapewnić bardziej zaawansowane autouzupełnianie dla niektórych poleceń (np. autouzupełnianie argumentów programu innych niż nazwy plików). W systemie zdefiniowano taką funkcję Programowalnego Uzupełniania dla vim
polecenia.
Wpisanie complete
w wierszu polecenia pokaże, jakie funkcje są używane do zapewnienia autouzupełniania bash
.
$ complete
complete -o default -F _complete_open open
Wpisz, type function_name
aby dowiedzieć się o ich definicji.
$ type _complete_open
_complete_open is a function
_complete_open ()
{
# function definition
}
Aby dowiedzieć się, gdzie zdefiniowano funkcję. użyj następującego:
$ shopt -s extdebug
$ declare -F _complete_open
_complete_open 70 /Users/danielbeck/.bash_profile