Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bash completion: Add autopurge command | Tomáš Janoušek | 2019-09-10 | 1 | -1/+1 |
| | |||||
* | bash completion: add keys | Vasya Novikov | 2019-01-22 | 1 | -0/+2 |
| | |||||
* | bash-completion: Fix spelling of autoclean | Matt Kraai | 2017-05-04 | 1 | -1/+1 |
| | | | | Closes: #861846 | ||||
* | bash-completion: Only complete understood file paths for install | John R. Lenton | 2016-11-30 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previouosly apt's bash completion was such that, given $ mkdir xyzzz $ touch xyzzy.deb xyzzx.two.deb you'd get $ apt install xyzz<tab> xyzzx.two.deb xyzzz/ $ apt install /tmp/foo/xyzz<tab> xyzzx.two.deb xyzzz/ this is inconsistent (xyzzx.two.deb is listed but not xyzzy.deb), but worse than that it offered things that apt would not actually recognise as candidates for install: $ sudo apt install xyzzx.two.deb Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package xyzzx.two.deb E: Couldn't find any package by glob 'xyzzx.two.deb' E: Couldn't find any package by regex 'xyzzx.two.deb' With this small (trival, really) change, apt's bash completion will only offer things apt understands, and won't recquire an aditional period in the filename to offer it: $ apt install xyzz<tab>^C $ # (no completions!) $ apt install ./xyzz<tab> xyzzx.two.deb xyzzy.deb xyzzz/ $ apt install /tmp/foo/xyzz xyzzx.two.deb xyzzy.deb xyzzz/ fixes #28 LP: #1645815 | ||||
* | CMake: Install bash completions via cmake | Julian Andres Klode | 2016-08-15 | 1 | -0/+4 |
| | | | | | | | Having the completions installed only by the packaging was an oversight. Gbp-Dch: ignore | ||||
* | Provide complete apt bash completion | Julian Andres Klode | 2016-05-13 | 1 | -6/+122 |
| | | | | | | | | | This fixes Debian/apt#13 and the launchpad bug listed below, but is far more advanced. I went through private-cmndline.cc and looked at the supported options. LP: #1573547 Thanks: Elias Fröhner and Svyatoslav Gryaznov for the initial work | ||||
* | Install bash completion with correct name | Julian Andres Klode | 2016-01-08 | 1 | -0/+107 |
Move the completion to completions/bash/apt and install all bash completions from completions/bash. Gbp-Dch: ignore |