zsh-users
 help / color / mirror / code / Atom feed
From: Perry Smith <pedz@easesoftware.com>
To: Zsh Users <zsh-users@zsh.org>
Subject: Is "dynamic-dirs" special?
Date: Thu, 15 Sep 2022 22:16:38 -0500	[thread overview]
Message-ID: <8272985D-00F1-4177-8F0E-F090E09BEBA4@easesoftware.com> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 1965 bytes --]

I’m wanting to do basically what this function does.  It comes from the zshexpn(1) page and other zsh documentation.  I’m trying to “vaguely understand” without diving into the fine details what this function is doing and how it works.

In this case, I understand everything more or less except the _wanted line and in particular, is the tag "dynamic-dirs" any arbitrary tag or does it need to match what the higher level driving functions are looking for?  I read briefly about tags and it seems like they would need to match up but I can’t find dynamic-dirs anywhere in any code that I’ve grep’ed.  Nor have a found any type of list of tags that are used and what they means except the example of “files” and “directories” mentioned in the first few paragraphs of zshcompsys.

    zsh_directory_name() {
      emulate -L zsh
      setopt extendedglob
      local -a match mbegin mend
      if [[ $1 = d ]]; then
        # turn the directory into a name
        if [[ $2 = (#b)(/home/pws/perforce/)([^/]##)* ]]; then
          typeset -ga reply
          reply=(p:$match[2] $(( ${#match[1]} + ${#match[2]} )) )
        else
          return 1
        fi
      elif [[ $1 = n ]]; then
        # turn the name into a directory
        [[ $2 != (#b)p:(?*) ]] && return 1
        typeset -ga reply
        reply=(/home/pws/perforce/$match[1])
      elif [[ $1 = c ]]; then
        # complete names
        local expl
        local -a dirs
        dirs=(/home/pws/perforce/*(/:t))
        dirs=(p:${^dirs})
        _wanted dynamic-dirs expl 'dynamic directory' compadd -S\] -a dirs
        return
      else
        return 1
      fi
      return 0
    }

The other question is about the ’n’ section.  It is going to return a reply even if the directory doesn’t exist.  Am I reading the code right?
I guess this would be nice if I was going to do `mkdir ~p:foodog` ?

Thank you for your time,
Perry


[-- Attachment #1.2: Type: text/html, Size: 6321 bytes --]

[-- Attachment #2: Message signed with OpenPGP --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

                 reply	other threads:[~2022-09-16  3:18 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8272985D-00F1-4177-8F0E-F090E09BEBA4@easesoftware.com \
    --to=pedz@easesoftware.com \
    --cc=zsh-users@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).