1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-13 02:56:18 +02:00

39046 + 39061: New :P history modifier.

This commit is contained in:
Daniel Shahaf 2016-07-30 16:16:22 +00:00
parent 4b2810ab2d
commit 7154052ebe
13 changed files with 68 additions and 14 deletions

View File

@ -1,3 +1,13 @@
2016-08-22 Daniel Shahaf <d.s@daniel.shahaf.name>
* 39046 + 39061: Completion/Base/Completer/_external_pwds,
Completion/Zsh/Type/_history_modifiers, Doc/Zsh/contrib.yo,
Doc/Zsh/expn.yo, Functions/MIME/zsh-mime-handler,
Functions/VCS_Info/VCS_INFO_quilt,
Functions/Zle/expand-absolute-path, NEWS, Src/params.c,
Src/subst.c, Src/utils.c, Test/D02glob.ztst: New :P history
modifier.
2016-08-20 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 39064: configure.ac, Src/Modules/mathfuc.c: use scalbn() instead

View File

@ -22,7 +22,7 @@ case $OSTYPE in
)
;;
linux*)
dirs=( /proc/${^$(pidof zsh):#$$}/cwd(N:A) )
dirs=( /proc/${^$(pidof zsh):#$$}/cwd(N:P) )
dirs=( $^dirs(N^@) )
;;
*)

View File

@ -64,8 +64,8 @@ while true; do
)
if (( ! global )); then
list+=(
"a:absolute path"
"A:absolute path resolving symbolic links"
"a:absolute path, resolve '..' lexically"
"A:as ':a', then resolve symlinks"
"c:PATH search for command"
"g:globally apply s or &"
"h:head - strip trailing path element"
@ -73,6 +73,7 @@ while true; do
"r:root - strip suffix"
"e:leave only extension"
"Q:strip quotes"
"P:realpath, resolve '..' physically"
"l:lower case all words"
"u:upper case all words"
)

View File

@ -3477,7 +3477,7 @@ will ensure that any files found in that area will be executed as MIME
types even if they are executable. As this example shows, the complete
file name is matched against the pattern, regardless of how the file
was passed to the handler. The file is resolved to a full path using
the tt(:A) modifier described in
the tt(:P) modifier described in
ifzman(the subsection Modifiers in zmanref(zshexpn))\
ifnzman(noderef(Modifiers));
this means that symbolic links are resolved where possible, so that

View File

@ -240,6 +240,7 @@ function, symbolic links are not resolved, so on those systems `tt(a)' and
`tt(A)' are equivalent.
Note: tt(foo:A) and tt(realpath+LPAR()foo+RPAR()) are different on some inputs.
For tt(realpath+LPAR()foo+RPAR()) semantics, see the `tt(P)` modifier.
)
item(tt(c))(
Resolve a command name into an absolute path by searching the command
@ -265,6 +266,14 @@ item(tt(p))(
Print the new command but do not execute it. Only works with history
expansion.
)
item(tt(P))(
Turn a file name into an absolute path, like tt(realpath+LPAR()3+RPAR()).
The resulting path will be absolute, have neither `tt(.)' nor `tt(..)' components,
and refer to the same directory entry as the input filename.
Unlike tt(realpath+LPAR()3+RPAR()), non-existent trailing components are
permitted and preserved.
)
item(tt(q))(
Quote the substituted words, escaping further substitutions. Works
with history expansion and parameter expansion, though for parameters

View File

@ -127,7 +127,7 @@ for pattern in $exec_asis; do
files=(${dirpref}${~pattern})
if [[ -n ${files[(r)$1]} ]]; then
for pattern in $exec_never; do
[[ ${1:A} = ${~pattern} ]] && break 2
[[ ${1:P} = ${~pattern} ]] && break 2
done
if (( list )); then
for (( i = 1; i <= $#; i++ )); do

View File

@ -170,7 +170,7 @@ function VCS_INFO_quilt() {
applied=()
fi
patches=$(<$pc/.quilt_patches)
patches=`builtin cd -q "${pc:h}" && print -r - ${patches:A}`
patches=`builtin cd -q "${pc:h}" && print -r - ${patches:P}`
fi
if zstyle -t "${context}" get-unapplied; then
# This zstyle call needs to be moved further up if `quilt' needs

View File

@ -10,7 +10,7 @@ autoload -Uz modify-current-argument
if (( ! ${+functions[glob-expand-absolute-path]} )); then
glob-expand-absolute-path() {
local -a files
files=(${~1}(N:A))
files=(${~1}(N:P))
(( ${#files} )) || return
REPLY=${(D)files[1]}
}

11
NEWS
View File

@ -4,6 +4,17 @@ CHANGES FROM PREVIOUS VERSIONS OF ZSH
Note also the list of incompatibilities in the README file.
Changes from 5.2 to 5.3
-----------------------
The new word modifier ':P' computes the physical path of the argument.
It is different from the existing ':a' modifier which always resolves
'/before/here/../after' to '/before/after', and differs from the
existing ':A' modifier which resolves symlinks only after 'here/..' is
removed, even when /before/here is itself a symbolic link. It is
recommended to review uses of ':A' and, if appropriate, convert them
to ':P' as soon as compatibility with 5.2 is no longer a requirement.
Changes from 5.1.1 to 5.2
-------------------------

View File

@ -4336,7 +4336,7 @@ void
homesetfn(UNUSED(Param pm), char *x)
{
zsfree(home);
if (x && isset(CHASELINKS) && (home = xsymlink(x)))
if (x && isset(CHASELINKS) && (home = xsymlink(x, 0)))
zsfree(x);
else
home = x ? x : ztrdup("");

View File

@ -4081,6 +4081,7 @@ modify(char **str, char **ptr)
case 'u':
case 'q':
case 'Q':
case 'P':
c = **ptr;
break;
@ -4287,6 +4288,12 @@ modify(char **str, char **ptr)
untokenize(copy);
}
break;
case 'P':
if (*copy != '/') {
copy = zhtricat(metafy(zgetcwd(), -1, META_HEAPDUP), "/", copy);
}
copy = xsymlink(copy, 1);
break;
}
tc = *tt;
*tt = '\0';
@ -4363,6 +4370,12 @@ modify(char **str, char **ptr)
untokenize(*str);
}
break;
case 'P':
if (**str != '/') {
*str = zhtricat(metafy(zgetcwd(), -1, META_HEAPDUP), "/", *str);
}
*str = xsymlink(*str, 1);
break;
}
}
if (rec < 0) {

View File

@ -801,9 +801,9 @@ findpwd(char *s)
char *t;
if (*s == '/')
return xsymlink(s);
return xsymlink(s, 0);
s = tricat((pwd[1]) ? pwd : "", "/", s);
t = xsymlink(s);
t = xsymlink(s, 0);
zsfree(s);
return t;
}
@ -969,11 +969,13 @@ xsymlinks(char *s, int full)
/*
* expand symlinks in s, and remove other weird things:
* note that this always expands symlinks.
*
* 'heap' indicates whether to malloc() or allocate on the heap.
*/
/**/
char *
xsymlink(char *s)
xsymlink(char *s, int heap)
{
if (*s != '/')
return NULL;
@ -981,8 +983,8 @@ xsymlink(char *s)
if (xsymlinks(s + 1, 1) < 0)
zwarn("path expansion failed, using root directory");
if (!*xbuf)
return ztrdup("/");
return ztrdup(xbuf);
return heap ? dupstring("/") : ztrdup("/");
return heap ? dupstring(xbuf) : ztrdup(xbuf);
}
/**/
@ -1260,7 +1262,7 @@ getnameddir(char *name)
/* Retrieve an entry from the password table/database for this user. */
struct passwd *pw;
if ((pw = getpwnam(name))) {
char *dir = isset(CHASELINKS) ? xsymlink(pw->pw_dir)
char *dir = isset(CHASELINKS) ? xsymlink(pw->pw_dir, 0)
: ztrdup(pw->pw_dir);
if (dir) {
adduserdir(name, dir, ND_USERNAME, 1);

View File

@ -678,3 +678,11 @@
rm glob.tmp/link
0:modifier ':A' resolves '..' components before symlinks
# There should be no output
ln -s dir3/subdir glob.tmp/link
() {
print ${1:P}
} glob.tmp/link/../../hello/world
rm glob.tmp/link
0:modifier ':P' resolves symlinks before '..' components
*>*glob.tmp/hello/world