zsh-workers
 help / color / mirror / code / Atom feed
From: "Thomas Gläßle" <thomas@coldfix.de>
To: Bart Schaefer <schaefer@brasslantern.com>
Cc: zsh-workers@zsh.org
Subject: Re: Path with spaces in _canonical_paths
Date: Mon, 21 Nov 2022 18:41:08 +0100	[thread overview]
Message-ID: <45820bd7-fab6-70f5-5abb-dc444f6f1075@coldfix.de> (raw)
In-Reply-To: <CAH+w=7ZHODk-ZKPLvXiyd6s17uO+fnC-vgxnHvyGnnrqzr7vrQ@mail.gmail.com>


[-- Attachment #1.1.1: Type: text/plain, Size: 2465 bytes --]


On 11/21/22 17:30, Bart Schaefer wrote:
> I still can't reproduce this

Weird.. With the symlink I can now on all my machines (arch, debian 11, 
mint 21), and even the official(?) docker:

    % docker run --rm -it zshusers/zsh:5.9
    # ln -s /tmp /foo
    # autoload -U compinit; compinit
    # compdef '_canonical_paths -N files files /tmp/My\ File' cmd
    # cmd <Tab>
    /foo/My File
    /tmp/My\ File
    foo/My File
    tmp/My File

(output split to several lines, to make it more readable)

> diff --git a/Completion/Unix/Type/_canonical_paths
> b/Completion/Unix/Type/_canonical_paths
> index a8fbbb524..b2eff84df 100644
> --- a/Completion/Unix/Type/_canonical_paths
> +++ b/Completion/Unix/Type/_canonical_paths
> @@ -42,7 +42,7 @@ _canonical_paths_add_paths () {
>       # ### Ideally, this codepath would do what the 'if' above does,
>       # ### but telling compadd to pretend the "word on the command line"
>       # ### is ${"the word on the command line"/$origpref/$canpref}.
> -    matches+=(${${(M)files:#$canpref*}/$canpref/$origpref})
> +    matches+=( "${(@)${(@M)files:#$canpref*}/$canpref/$origpref}" )
>     fi
>
>     for subdir in $expref?*(@); do

This didn't fix the problem. But applying the same escaping "hack"(?) as 
in the if-case above, did:

--- a/Completion/Unix/Type/_canonical_paths
+++ b/Completion/Unix/Type/_canonical_paths
@@ -30,19 +30,17 @@
    canpref+=$rltrim
    [[ $expref == *[^/] && $canpref == */ ]] && origpref+=/

+  local -a tmp_buffer
+  compadd -A tmp_buffer "$__gopts[@]" -a files
    # Append to $matches the subset of $files that matches $canpref.
    if [[ $canpref == $origpref ]]; then
      # This codepath honours any -M matchspec parameters.
-    () {
-      local -a tmp_buffer
-      compadd -A tmp_buffer "$__gopts[@]" -a files
-      matches+=( "${(@)tmp_buffer/$canpref/$origpref}" )
-    }
+    matches+=( "${(@)tmp_buffer/$canpref/$origpref}" )
    else
      # ### Ideally, this codepath would do what the 'if' above does,
      # ### but telling compadd to pretend the "word on the command line"
      # ### is ${"the word on the command line"/$origpref/$canpref}.
-    matches+=(${${(M)files:#$canpref*}/$canpref/$origpref})
+    matches+=(${${(M)tmp_buffer:#$canpref*}/$canpref/$origpref})
    fi

    for subdir in $expref?*(@); do






[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 19183 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

  reply	other threads:[~2022-11-21 17:41 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-18 17:41 thomas
2022-11-21  3:57 ` Bart Schaefer
2022-11-21 10:47   ` thomas
2022-11-21 16:30     ` Bart Schaefer
2022-11-21 17:41       ` Thomas Gläßle [this message]
2022-11-21 21:32         ` Bart Schaefer
2022-11-23 14:13           ` Daniel Shahaf
2022-11-23 21:36             ` Bart Schaefer
2022-11-23 22:24               ` Daniel Shahaf
2022-11-23 22:42                 ` Bart Schaefer
2022-11-23 23:06                   ` Daniel Shahaf
2022-11-23 23:12                     ` Bart Schaefer
2022-11-24  0:12                       ` Daniel Shahaf
2022-11-24 18:42                         ` Bart Schaefer
2022-11-23 23:36                   ` Thomas Gläßle
2022-11-23 23:40                     ` Thomas Gläßle
2022-11-24 18:51                     ` Bart Schaefer

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=45820bd7-fab6-70f5-5abb-dc444f6f1075@coldfix.de \
    --to=thomas@coldfix.de \
    --cc=schaefer@brasslantern.com \
    --cc=zsh-workers@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).