8707ef668e
The shells/bash-completion port installs Ian Macdonald's programmable completion library for Bash 2.04 and above. This gives users context- sensitive tab-completion for such things as program arguments, SSH hostnames, NFS mounts, and so on. PR: ports/52790 Submitted by: Kirk Strauser <kirk@strauser.com>
9 lines
284 B
Text
9 lines
284 B
Text
|
|
The programmable completion library is not enabled by default for various
|
|
reasons. To use it, you should source %%PREFIX%%/etc/bash_completion from
|
|
your .bashrc file. For example:
|
|
|
|
if [ -f %%PREFIX%%/etc/bash_completion ]; then
|
|
. %%PREFIX%%/etc/bash_completion
|
|
fi
|
|
|