zsh-users
 help / color / mirror / code / Atom feed
* git-subtree completions
@ 2016-05-12  5:57 Jordan Klassen
  2016-05-13  9:39 ` Bart Schaefer
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jordan Klassen @ 2016-05-12  5:57 UTC (permalink / raw)
  To: zsh-users

[-- Attachment #1: Type: text/plain, Size: 416 bytes --]

Hey all, after a long time of sitting on a closed PR to zsh-completions, I
ported it over to zsh here: https://github.com/zsh-users/zsh/pull/8

I need feedback on it, and if it's better to submit a patch via `git
send-email` let me know. In particular, is there an easy way to test this
without actually compiling zsh? How do I fix my `THIS_IS_A_HACK` issue? And
code review in general.

Thanks!
-- 
~Jordan Klassen

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

* Re: git-subtree completions
  2016-05-12  5:57 git-subtree completions Jordan Klassen
@ 2016-05-13  9:39 ` Bart Schaefer
  2016-05-13 12:02 ` Oliver Kiddle
       [not found] ` <27621.1463140958__28965.9567446963$1463141465$gmane$org@thecus.kiddle.eu>
  2 siblings, 0 replies; 5+ messages in thread
From: Bart Schaefer @ 2016-05-13  9:39 UTC (permalink / raw)
  To: Jordan Klassen; +Cc: Zsh Users

On Wed, May 11, 2016 at 10:57 PM, Jordan Klassen <jordan@klassen.me.uk> wrote:
>
> I need feedback on it, and if it's better to submit a patch via `git
> send-email` let me know.

Generally speaking, yes, you should send a patch to zsh-workers.

> In particular, is there an easy way to test this
> without actually compiling zsh?

Since the diff is to a script file, yes.  You just need to change the
$fpath array to list the directory containing your edited file ahead
of the directory containing the un-edited copy, before the first time
you attempt to complete after "git".

> How do I fix my `THIS_IS_A_HACK` issue?

I'm not sure what that's meant to accomplish?  As far as I can tell
using a pattern that won't match anything should be the same as
leaving out the -A entirely.

> And code review in general.

There are others better qualified than me to critique changes to the
git completion ...


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

* Re: git-subtree completions
  2016-05-12  5:57 git-subtree completions Jordan Klassen
  2016-05-13  9:39 ` Bart Schaefer
@ 2016-05-13 12:02 ` Oliver Kiddle
       [not found] ` <27621.1463140958__28965.9567446963$1463141465$gmane$org@thecus.kiddle.eu>
  2 siblings, 0 replies; 5+ messages in thread
From: Oliver Kiddle @ 2016-05-13 12:02 UTC (permalink / raw)
  To: Jordan Klassen; +Cc: zsh-users

Jordan Klassen wrote:
> How do I fix my `THIS_IS_A_HACK` issue?

Use -A "-*" and change this line:
    '*:: :->option-or-argument' && ret=0
to:
    '*::: := ->option-or-argument' && ret=0

> And code review in general.

Otherwise, it looks good. I'd suggest using _default instead of _nothing
for an unknown subcommand. _nothing might be more accurate at the moment
but falling back to default completion is better if a new subcommand is
added to git-subtree and the completion isn't updated. I'm aware that
the same comment could apply elsewhere in _git.

The descriptions for subcommands also could do with adjusting.
References to things like <commit> and <repository> make less sense in
the absense of the rest of the help information these have been copied
from.

Coming back to the THIS_IS_A_HACK issue, I think there is arguably a bug
in _arguments. The documentation states that with two
colons, "the words special array and the CURRENT special parameter are
modified to refer only to the normal arguments". I would expect the
command to be a "normal argument" in this context but -P coming after it
appears to affect this.
  For: git subtree add <tab> we get words=( add '' ) CURRENT=2
  For: git subtree add -P <tab> we get words=( '' ) CURRENT=1
_arguments in the option-or-argument state needs
words=( anything '' ) CURRENT=2
Arguably, the -P is covered by the *: action and should be included too.

The relevant code for this is the following two lines in computil.c:
    if ((restr = (arg->type == CAA_RARGS)))
	      restrict_range(ca_laststate.optbeg, ca_laststate.argend);

restrict_range appears to restrict the range based on a start and end
index so is not equipped to remove options interspersed with normal
arguments. So my question for -workers folks is how do we make sense of
struct castate to correct this? I think we need something like
ca_laststate.args along with compwords from ca_laststate.argbeg onwards.

Oliver


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

* Re: git-subtree completions
       [not found] ` <27621.1463140958__28965.9567446963$1463141465$gmane$org@thecus.kiddle.eu>
@ 2016-07-07  2:00   ` Daniel Shahaf
  2016-07-13  4:24     ` Daniel Shahaf
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Shahaf @ 2016-07-07  2:00 UTC (permalink / raw)
  To: Oliver Kiddle; +Cc: Jordan Klassen, zsh-users

I see this has been committed now; reviewing the committed patch:

> +++ b/Completion/Unix/Command/_git
> @@ -1747,6 +1747,91 @@ 
> +(( $+functions[_git-subtree] )) ||
> +_git-subtree () {
> +    (option-or-argument)
> +      curcontext=${curcontext%:*}-$line[1]:
> +      case $line[1] in
> +        (add)
> +          _arguments \
> +            '(-q --quiet)'{-q,--quiet}'[suppress progress output]' \
> +            '(-m --message)'{-m,--message}'[use the given message as the commit message for the merge commit]' \

-m takes an argument, but this spec doesn't reflect that.  I assume it should be

               '(-m --message)'{-m+,--message=}'[use the given message as the commit message for the merge commit]:message' \
	                        ^^^ ^^^^^^^^^^                                                                    ^^^^^^^^
(three changes)

> +            '(-P --prefix)'{-P,--prefix=}'[the path to the subtree in the repository to manipulate]: :_directories' \

s/-P,/-P+,/

> +            '--squash[import only a single commit from the subproject]' \
> +            ': :__git_any_repositories_or_references' \
> +            ':: :__git_ref_specs' && ret=0

__git_ref_specs doesn't seem appropriate here:
.
    % git subtree add -P foo ../other-repository/ master:target
    'master:target' does not look like a ref
.
I think what is wanted here is "names of refs in the remote repository",
same as the before-the-colon part of 'git fetch' refspecs.

(And by the way, __git_ref_specs is deprecated in master; new code
should use one of the two __git_ref_specs_* functions directly.)

Cheers,

Daniel


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

* Re: git-subtree completions
  2016-07-07  2:00   ` Daniel Shahaf
@ 2016-07-13  4:24     ` Daniel Shahaf
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Shahaf @ 2016-07-13  4:24 UTC (permalink / raw)
  To: Oliver Kiddle; +Cc: Jordan Klassen, zsh-users

Daniel Shahaf wrote on Thu, Jul 07, 2016 at 02:00:10 +0000:
> I see this has been committed now; reviewing the committed patch:
> 
> > +++ b/Completion/Unix/Command/_git
> > @@ -1747,6 +1747,91 @@ 
> > +            '(-m --message)'{-m,--message}'[use the given message as the commit message for the merge commit]' \
> 
> -m takes an argument, but this spec doesn't reflect that.  I assume it should be
> 
>                '(-m --message)'{-m+,--message=}'[use the given message as the commit message for the merge commit]:message' \
> 	                        ^^^ ^^^^^^^^^^                                                                    ^^^^^^^^
> (three changes)
> 
> > +            '(-P --prefix)'{-P,--prefix=}'[the path to the subtree in the repository to manipulate]: :_directories' \
> 
> s/-P,/-P+,/

I'll push a patch for these two in a minute (once I have the X-Seq of
this).

> > +            '--squash[import only a single commit from the subproject]' \
> > +            ': :__git_any_repositories_or_references' \
> > +            ':: :__git_ref_specs' && ret=0
> 
> __git_ref_specs doesn't seem appropriate here:
> .
>     % git subtree add -P foo ../other-repository/ master:target
>     'master:target' does not look like a ref

This issue is outstanding.

Cheers,

Daniel


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

end of thread, other threads:[~2016-07-13  4:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-12  5:57 git-subtree completions Jordan Klassen
2016-05-13  9:39 ` Bart Schaefer
2016-05-13 12:02 ` Oliver Kiddle
     [not found] ` <27621.1463140958__28965.9567446963$1463141465$gmane$org@thecus.kiddle.eu>
2016-07-07  2:00   ` Daniel Shahaf
2016-07-13  4:24     ` Daniel Shahaf

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

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).