diff options
| author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-07-30 16:16:22 +0000 |
|---|---|---|
| committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-08-22 03:34:30 +0000 |
| commit | 7154052ebe3d810390164a05c39ff83f98a1d858 (patch) | |
| tree | de329087e802a17df0dd93aee35fdb5e49b25ac3 /Functions/Zle | |
| parent | 39064: use scalbn() instead of scalb() (mathfunc.c) (diff) | |
| download | zsh-7154052ebe3d810390164a05c39ff83f98a1d858.tar zsh-7154052ebe3d810390164a05c39ff83f98a1d858.tar.gz zsh-7154052ebe3d810390164a05c39ff83f98a1d858.tar.bz2 zsh-7154052ebe3d810390164a05c39ff83f98a1d858.tar.lz zsh-7154052ebe3d810390164a05c39ff83f98a1d858.tar.xz zsh-7154052ebe3d810390164a05c39ff83f98a1d858.tar.zst zsh-7154052ebe3d810390164a05c39ff83f98a1d858.zip | |
39046 + 39061: New :P history modifier.
Diffstat (limited to 'Functions/Zle')
| -rw-r--r-- | Functions/Zle/expand-absolute-path | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Functions/Zle/expand-absolute-path b/Functions/Zle/expand-absolute-path index b85757600..4887f3c60 100644 --- a/Functions/Zle/expand-absolute-path +++ b/Functions/Zle/expand-absolute-path @@ -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]} } |
