We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cd $HOME/ and press Tab completes with filenames. After bash-completion is activated, this is broken.
cd $HOME/
After some searching, it turns out this is an old bug.
For the time being shopt -s direxpand could avoid this by expanding the variable to absolute path.
shopt -s direxpand
Besides, expansion for tilde like vim ~/.ssh is also broken, but vim ~/.ssh/ works.
vim ~/.ssh
vim ~/.ssh/
The text was updated successfully, but these errors were encountered:
Inactive, closed.
Sorry, something went wrong.
No branches or pull requests
cd $HOME/and press Tab completes with filenames. After bash-completion is activated, this is broken.After some searching, it turns out this is an old bug.
For the time being
shopt -s direxpandcould avoid this by expanding the variable to absolute path.Besides, expansion for tilde like
vim ~/.sshis also broken, butvim ~/.ssh/works.The text was updated successfully, but these errors were encountered: