/usr/share/zsh/functions/Zle/expand-absolute-path is in zsh-common 5.4.2-3ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # expand-absolute-path
# This is a ZLE widget to expand the absolute path to a file,
# using directory naming to shorten the path where possible.
emulate -L zsh
setopt extendedglob cbases
autoload -Uz modify-current-argument
if (( ! ${+functions[glob-expand-absolute-path]} )); then
glob-expand-absolute-path() {
local -a files
files=(${~1}(N:P))
(( ${#files} )) || return
REPLY=${(D)files[1]}
}
fi
modify-current-argument glob-expand-absolute-path
|