mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-21 00:01:26 +01:00
10 lines
144 B
Text
10 lines
144 B
Text
|
emulate -L zsh
|
||
|
|
||
|
autoload -U read-from-minibuffer
|
||
|
|
||
|
zle -K zed-normal-keymap
|
||
|
|
||
|
local REPLY
|
||
|
read-from-minibuffer "File name: "
|
||
|
zed_file_name=$REPLY
|