A much better feature is available in zsh, called safe-paste, that does this without the user having to insert "tap" or anything else manually. It relies on something called bracketed paste, where the terminal emulator sends special escape sequences to indicate the beginning and end of a paste. These are intercepted by the zsh plugin, which opens $EDITOR with the pasted content.
I don't really see, why I'd install something from some github repository if I can get it from a moreutils package that I like to have installed anyway.
Then don't. `vipe` from `moreutils` is acknowledged in this project's readme.
I don't have `moreutils` installed; it's plausible that someone might want just the single package, in which case `tap` would seems OK as an alternative.
Why do you create an env variable that contains the whole file in question when the editor returned success? Wouldn't something like:
cat "$f"; rm "$f"
not involve loading the whole file in memory at once? Note that using this also makes sense with self-extracting archives/shell scripts, because it lets you inspect the shell script at the beginning.
13 comments
[ 3.0 ms ] story [ 38.9 ms ] threadhttps://github.com/robbyrussell/oh-my-zsh/blob/master/plugin...
* type "curl <paste>" in zsh, vim opens with "curl <pasted-url>
* inspect URL, if OK in Normal mode do !!zsh<CR> (I assume emacs can also somehow eval current line in shell and replace line with output)
* inspect the code downloaded (still in vim) and then execute it (or save to file then execute).
http://manpages.ubuntu.com/manpages/xenial/en/man1/vipe.1.ht...
moreutils is great. Unfortunately, moreutils parallel conflicts with GNU parallel :(
I don't have `moreutils` installed; it's plausible that someone might want just the single package, in which case `tap` would seems OK as an alternative.