Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: completion is over thinking things.
- X-seq: zsh-users 24301
- From: Roman Perepelitsa <roman.perepelitsa@xxxxxxxxx>
- To: Ray Andrews <rayandrews@xxxxxxxxxxx>
- Subject: Re: completion is over thinking things.
- Date: Sat, 28 Sep 2019 19:13:11 +0200
- Cc: Zsh Users <zsh-users@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=1n7QRuh4mseAGRnOcMi+R71uCg5dckBcMAukTDzJf6E=; b=gP3rmaf2rjZDnNu9AdfHP8ZB595IYd2ZdCdDhl3a75yzEceyidmZeg/2Xq0+8UD0Sd K9IcY2C507w1xglmHwAnqeGckmHGW0c7NdLLprvfYpBFYVSrNSx0mfuqBxFyQZbhsNjm Ppo/T6rXxP4WGCO3eTu5ovnLhOGdAwcMGxuWt2sPCzJGIrqrsZYsrxB4j3EIH4K2F4/w FAC+tHWlX79x5vJHGdfN1Qz2TZpFSuBahi2rTPidQfjMgacjyhaVuyLWee3gVq6qjlIY 0mgNoiIbYjWm0nR2RiUr3a6vo2R45zBFgMwMTm/g84Qn3qnGlilyaOgljBgEPMEDpUQy 8f0g==
- In-reply-to: <306325bb-395d-a16b-a771-0786c23cb46e@eastlink.ca>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- List-unsubscribe: <mailto:zsh-users-unsubscribe@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <306325bb-395d-a16b-a771-0786c23cb46e@eastlink.ca>
On Sat, Sep 28, 2019 at 7:06 PM Ray Andrews <rayandrews@xxxxxxxxxxx> wrote:
>
> $ ls inst.deb
> inst.deb
>
> $ apt-get install inst. [TAB]
> Completing package
> libapt-inst2.0
> libmono-system-configuration-install4.0-cil
> libmono-system-runtime-durableinstancing4.0-cil
>
> How can I get completion to stop looking and finding files God knows
> where and just expand filenames in the current directory?
This doesn't answer your question but `apt-get install inst.deb` won't
install ./inst.deb. Instead, it'll install all packages that partially
match regex `inst.deb`. You might be looking for `dpkg -i inst.deb`,
which conveniently also completes `inst.[TAB]` as you would expect.
Roman.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author