Bug 831004
| Summary: | Tab-complete will not complete core file name. | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Ben Greear <greearb> |
| Component: | bash-completion | Assignee: | Ville Skyttä <ville.skytta> |
| Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 17 | CC: | sheltren, ville.skytta |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2012-06-12 15:56:12 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Ben Greear
2012-06-11 23:35:05 UTC
This is intentional, only core and core.<PID> files are now completed in this scenario. If you disagree with bash-completions' filename suggestions, use Alt+/ instead of tab to complete on all filenames. Is there any way to disable this mis-feature and just let tab work like it used to work? I've been doing tab-complete for years and have no interest in training my finders to use some Alt combination that is much more difficult to type. Some things you may want to look into: rpm -e bash-completion shopt -u progcomp # in bashrc, see /etc/profile.d/bash_completion.sh complete -F _minimal gdb # in bashrc replace the last COMPREPLY+= line plus its continuation in /usr/share/bash-completion/completions/gdb with _filedir. This will be overwritten on bash-completion upgrades though. The "some Alt combination" is what readline binds complete-filename by default. I suppose you could bind it to some other key/combination. Never tried that myself, see the bash man page for more info. |