diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2004-06-23 16:14:24 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2004-06-23 16:14:24 +0000 |
| commit | fd1676f3973eb2c72655f4249675c0f39dac73c6 (patch) | |
| tree | 2ac6dc03d858db65684d16be848925c419723c8f /Functions/Zle | |
| parent | 20091: Src/Modules/pcre.c: silence gcc "unused parameter" warnings. (diff) | |
| download | zsh-fd1676f3973eb2c72655f4249675c0f39dac73c6.tar zsh-fd1676f3973eb2c72655f4249675c0f39dac73c6.tar.gz zsh-fd1676f3973eb2c72655f4249675c0f39dac73c6.tar.bz2 zsh-fd1676f3973eb2c72655f4249675c0f39dac73c6.tar.lz zsh-fd1676f3973eb2c72655f4249675c0f39dac73c6.tar.xz zsh-fd1676f3973eb2c72655f4249675c0f39dac73c6.tar.zst zsh-fd1676f3973eb2c72655f4249675c0f39dac73c6.zip | |
20089: various zed improvements
Diffstat (limited to 'Functions/Zle')
| -rw-r--r-- | Functions/Zle/zed-set-file-name | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Functions/Zle/zed-set-file-name b/Functions/Zle/zed-set-file-name new file mode 100644 index 000000000..ca7758c37 --- /dev/null +++ b/Functions/Zle/zed-set-file-name @@ -0,0 +1,9 @@ +emulate -L zsh + +autoload -U read-from-minibuffer + +zle -K zed-normal-keymap + +local REPLY +read-from-minibuffer "File name: " +zed_file_name=$REPLY |
