/usr/share/zsh/functions/Zle/zed-set-file-name is in zsh-common 5.3.1-4.
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 | emulate -L zsh
autoload -Uz read-from-minibuffer
zle -K zed-normal-keymap
local REPLY
read-from-minibuffer "File name: "
zed_file_name=$REPLY
|