Bug 889745
Summary: | KSH - autocomplete stops numeric input | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Arnon Weinberg <arnon> |
Component: | ksh | Assignee: | Michal Hlavinka <mhlavink> |
Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | low | Docs Contact: | |
Priority: | unspecified | ||
Version: | 17 | CC: | martijn, mhlavink |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | ksh-20120801-8.fc17 | Doc Type: | Bug Fix |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2013-04-23 00:25:31 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: |
Thanks for reporting. Reproducible ksh-20120801-5.fc17 has been submitted as an update for Fedora 17. https://admin.fedoraproject.org/updates/ksh-20120801-5.fc17 ksh-20120801-5.fc18 has been submitted as an update for Fedora 18. https://admin.fedoraproject.org/updates/ksh-20120801-5.fc18 Package ksh-20120801-5.fc18: * should fix your issue, * was pushed to the Fedora 18 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing ksh-20120801-5.fc18' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2013-1620/ksh-20120801-5.fc18 then log in and leave karma (feedback). ksh-20120801-6.fc17 has been submitted as an update for Fedora 17. https://admin.fedoraproject.org/updates/ksh-20120801-6.fc17 ksh-20120801-6.fc18 has been submitted as an update for Fedora 18. https://admin.fedoraproject.org/updates/ksh-20120801-6.fc18 ksh-20120801-6.fc17 has been pushed to the Fedora 17 stable repository. If problems still persist, please make note of it in this bug report. ksh-20120801-6.fc18 has been pushed to the Fedora 18 stable repository. If problems still persist, please make note of it in this bug report. Tested. This is an improvement over previous behaviour in that now it is possible to autocomplete directories starting with a number. However, there is still a difference in the way directories starting with a number are handled compared with directories that do not start with a number (and compared with the way previous versions of KSH worked). Steps to Reproduce: 1. mkdir -p test/123abc 2. cd test[tab]123[tab] Actual results: 1) 123abc/ cd test/123 Expected results: cd test/123abc Note that the following test cases work fine: 1. mkdir -p test/123abc test/abc123 2. cd test/123[tab] or 2. cd test[tab]abc[tab] ksh-20120801-8.fc17 has been submitted as an update for Fedora 17. https://admin.fedoraproject.org/updates/ksh-20120801-8.fc17 ksh-20120801-8.fc18 has been submitted as an update for Fedora 18. https://admin.fedoraproject.org/updates/ksh-20120801-8.fc18 Package ksh-20120801-8.fc17: * should fix your issue, * was pushed to the Fedora 17 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing ksh-20120801-8.fc17' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2013-3589/ksh-20120801-8.fc17 then log in and leave karma (feedback). Confirmed this is working now - thanks! ksh-20120801-8.fc18 has been pushed to the Fedora 18 stable repository. If problems still persist, please make note of it in this bug report. ksh-20120801-8.fc17 has been pushed to the Fedora 17 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: Immediately after using autocomplete ([tab] or [esc][esc]) in ksh (emacs mode), the terminal does not accept additional character input if the next character pressed is a number - ie, if a file or directory starts with a number, then it is not possible to type it out immediately after using autocomplete. Non-numeric characters work fine. Version-Release number of selected component (if applicable): >rpm -q ksh ksh-20120801-3.fc17.i686 How reproducible: Always Steps to Reproduce: 1. mkdir -p test/123abc 2. cd test[tab]123abc Actual results: cd test/abc Expected results: cd test/123abc Additional info: This was working on a previous version of ksh: ksh-20100309-5.fc11.i586 Workarounds are to press a non-numeric key followed by backspace, or hit [tab] again to get a list of options.