Answers:
这由/ etc / bash_completion控制
如果您不喜欢,可以在_expand()中注释掉扩展代码。
这是我在fedora 17中的版本,但您的版本应该相似:
# 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() { :;}
在我的~/.bashrc
。
bash
可以为某些命令提供更复杂的自动完成功能(例如,自动完成除文件名之外的程序参数)。在系统上为命令定义了这样的可编程完成功能vim
。
打字complete
在命令提示符将显示使用您哪些功能为提供自动完成bash
。
$ complete
complete -o default -F _complete_open open
输入type function_name
以了解其定义。
$ type _complete_open
_complete_open is a function
_complete_open ()
{
# function definition
}
找出功能的定义位置。使用以下内容:
$ shopt -s extdebug
$ declare -F _complete_open
_complete_open 70 /Users/danielbeck/.bash_profile