Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Artifact ID: | e02f3652b809ab45bbb854bf87ba07ed542e12d9 |
---|---|
Page Name: | Auto-completion |
Date: | 2008-02-10 16:50:37 |
Original User: | anonymous |
Parent: | 667014dcd969b28b0013783acc08cd175d893deb (diff) |
Next | a3bcc6073b811a48a765de434442834a1e173edd |
Content
MS At least on my system (ubuntu) many programs feature auto-completion of subcommands; it is very useful. Fossil does not, svn and cvs do.
My guess is that the feature is enabled by the following entry in .bashrc:
# enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile # sources /etc/bash.bashrc). if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi
It would be nice if we could develop and maintain a file that would enable this for fossil when copied to /etc/bash_completion.d (system wide) or sourced in .bashrc. I do not know if this can be made in a portable (or at least automated) manner at all.
Would attach the /etc/bash_completion.d/subversion file as example, but can't - and it's a bit too long to include here