diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2019-01-25 22:46:55 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2019-01-25 22:46:55 +0100 |
commit | 7b75d97c1e43461a844be04ae4d36c3437213fa7 (patch) | |
tree | 5301a4a542b5731bc3f46babe340a5edd44587bc /Completion/Unix | |
parent | 95401e8336912dab76912adc7b45e6337fc436a3 (diff) | |
parent | 9799d0f9a2bd3a13fe52dbb9bc4d86f874dc1e14 (diff) | |
download | zsh-7b75d97c1e43461a844be04ae4d36c3437213fa7.tar.gz zsh-7b75d97c1e43461a844be04ae4d36c3437213fa7.zip |
New upstream release 5.7
Merge branch 'upstream' at 'zsh-5.7' into branch debian
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Type/_path_files | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Completion/Unix/Type/_path_files b/Completion/Unix/Type/_path_files index 9fa6ae9fc..1021c34e6 100644 --- a/Completion/Unix/Type/_path_files +++ b/Completion/Unix/Type/_path_files @@ -2,6 +2,11 @@ local -a match mbegin mend +local splitchars +if zstyle -s ":completion:${curcontext}:" file-split-chars splitchars; then + compset -P "*[${(q)splitchars}]" +fi + # Look for glob qualifiers. Do this first: if we're really # in a glob qualifier, we don't actually want to expand # the earlier part of the path. We can't expand inside |