git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Zsh submodule name completion borked
@ 2014-05-01 22:23 Phil Hord
  2014-05-01 22:31 ` Jonathan Nieder
  2014-05-01 22:35 ` Felipe Contreras
  0 siblings, 2 replies; 4+ messages in thread
From: Phil Hord @ 2014-05-01 22:23 UTC (permalink / raw)
  To: git, Jens Lehmann, Heiko Voigt

When I use zsh tab-completion to complete the submodule name in 'git
submodule init', I get more than I expected.

>From the gerrit repository (which has plugins):
  $ git submodule init plugins/<TAB>
  plugins/commit-message-length-validator\ \(v1.0-rc1-9-g545000b\)
  plugins/reviewnotes\ \(v1.0-rc1-8-ge984300\)
  plugins/replication\ \(v1.1-rc0-13-g4c3f4c9\)

It works ok in bash.  I tried to bisect the trouble, but it still
fails in 1.8.3, so I'm beginning to think it's me.  Does this happen
to anyone else?  Is it something in my local configuration causing
this?

Thanks,
Phil

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Zsh submodule name completion borked
  2014-05-01 22:23 Zsh submodule name completion borked Phil Hord
@ 2014-05-01 22:31 ` Jonathan Nieder
  2014-05-01 22:35 ` Felipe Contreras
  1 sibling, 0 replies; 4+ messages in thread
From: Jonathan Nieder @ 2014-05-01 22:31 UTC (permalink / raw)
  To: Phil Hord; +Cc: git, Jens Lehmann, Heiko Voigt

Hi,

Phil Hord wrote:

> When I use zsh tab-completion to complete the submodule name in 'git
> submodule init', I get more than I expected.

Is this using zsh's native tab-completion (i.e., not the tab
completion bundled with git)?  There might have been a change there.

Another place to look for hints would be ~/.gitconfig.

Hope that helps,
Jonathan

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: Zsh submodule name completion borked
  2014-05-01 22:23 Zsh submodule name completion borked Phil Hord
  2014-05-01 22:31 ` Jonathan Nieder
@ 2014-05-01 22:35 ` Felipe Contreras
  2014-05-02 16:23   ` Phil Hord
  1 sibling, 1 reply; 4+ messages in thread
From: Felipe Contreras @ 2014-05-01 22:35 UTC (permalink / raw)
  To: Phil Hord, git, Jens Lehmann, Heiko Voigt

Phil Hord wrote:
> When I use zsh tab-completion to complete the submodule name in 'git
> submodule init', I get more than I expected.
> 
> From the gerrit repository (which has plugins):
>   $ git submodule init plugins/<TAB>
>   plugins/commit-message-length-validator\ \(v1.0-rc1-9-g545000b\)
>   plugins/reviewnotes\ \(v1.0-rc1-8-ge984300\)
>   plugins/replication\ \(v1.1-rc0-13-g4c3f4c9\)
> 
> It works ok in bash.  I tried to bisect the trouble, but it still
> fails in 1.8.3, so I'm beginning to think it's me.  Does this happen
> to anyone else?  Is it something in my local configuration causing
> this?

Define 'works' in bash. From what I can see from the bash completion,
it's not doing anything special, so the completion you see are simply
files.

-- 
Felipe Contreras

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Zsh submodule name completion borked
  2014-05-01 22:35 ` Felipe Contreras
@ 2014-05-02 16:23   ` Phil Hord
  0 siblings, 0 replies; 4+ messages in thread
From: Phil Hord @ 2014-05-02 16:23 UTC (permalink / raw)
  To: Felipe Contreras, Jonathan Nieder; +Cc: git, Jens Lehmann, Heiko Voigt

On Thu, May 1, 2014 at 6:35 PM, Felipe Contreras
<felipe.contreras@gmail.com> wrote:
> Phil Hord wrote:
>> When I use zsh tab-completion to complete the submodule name in 'git
>> submodule init', I get more than I expected.
>>
>> From the gerrit repository (which has plugins):
>>   $ git submodule init plugins/<TAB>
>>   plugins/commit-message-length-validator\ \(v1.0-rc1-9-g545000b\)
>>   plugins/reviewnotes\ \(v1.0-rc1-8-ge984300\)
>>   plugins/replication\ \(v1.1-rc0-13-g4c3f4c9\)
>>
>> It works ok in bash.  I tried to bisect the trouble, but it still
>> fails in 1.8.3, so I'm beginning to think it's me.  Does this happen
>> to anyone else?  Is it something in my local configuration causing
>> this?
>

It seems to be something local.  I thought the issue persisted with no
local .zshrc config, but it looks like I only turned off my local
config and not the global settings.  The recent Ubuntu update is a
likely culprit.  I'll investigate locally and turn my reports up to
Ubuntu/Debian/Zshell.

> Define 'works' in bash. From what I can see from the bash completion,
> it's not doing anything special, so the completion you see are simply
> files.

To clarify my description in case anyone else sees it or is
interested, before I load /etc/zsh/zshrc, tab gives me simple filename
expansion.

After I load /etc/zsh/zshrc, tab expands only submodules in HEAD.  But
for some reason it gets the wrong kind of results in the expansion,
returning not just submodule paths, but submodule paths with tag info
appended.

Sample session:
  $ zsh --norcs
  % git submodule init plugins/<TAB>
   commit-message-length-validator/
   README
   reviewnotes/
   replication/
  ^C
  % source /etc/zsh/zshrc
  % git submodule init plugins/<TAB>
  plugins/commit-message-length-validator\ \(v1.0-rc1-9-g545000b\)
  plugins/reviewnotes\ \(v1.0-rc1-8-ge984300\)
  plugins/replication\ \(v1.1-rc0-13-g4c3f4c9\)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-05-02 16:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-01 22:23 Zsh submodule name completion borked Phil Hord
2014-05-01 22:31 ` Jonathan Nieder
2014-05-01 22:35 ` Felipe Contreras
2014-05-02 16:23   ` Phil Hord

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).