bash-complete-partial-path
bash-complete-partial-path copied to clipboard
Enhanced file path completion in bash (like in zsh)
I use `$CDPATH` to quickly `cd` or `pushd` to some interesting directories. However, the completion I get from `_bcpp --dirs` only considers directories in `$PWD` as candidates for completion. I'd...
Work on #8 is being done here. ## Progress report Adding support for bash 3.2 turns out to be pretty tricky. The following problems need to be solved: - [...
I've recently learned that pexpect works correctly under Cygwin (if Python is also installed via Cygwin). At first glance that seems to be a reasonable way to execute CI tests...
If you have used or have tried to use this project and have something to share, this is the place to do so! Even a short message will warm the...
The following line give me an error when installed on macOS Mojave (10.14.6) https://github.com/sio/bash-complete-partial-path/blob/11771a516769e17c02314300ae98d586171f7a6b/bash_completion#L306 ``` -bash: complete: -D: invalid option complete: usage: complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G...
The screencast in the README was done in a hurry after next to no planning and probably fails to convey some of the important features of bash-complete-partial-path. This issue is...
It seems like the tests `test_git_tag` and `test_git_stable` requires the tags from the git repo. When cloning a new fork the tags doesn't come along and thus the tests fail,...
I request for an option to consistently include quotes, similar to cmd and PowerShell, instead of using backslashes.
Suppose I want to `cd` to `.config/gedit`. With usual bash, I do: ``` $ cd .co ``` which completes it to ``` $ cd .config/ ``` and I can type...
The macos OS creates .DS_Store files in every directory. bash_completions sees these as regular files and suggests them. Is is possible to have an ignore list, or just ignore hidden...