1
1
Fork 0
configs/config/fish/functions/eps.fish
Jonathan Schleifer 3157e7481b Add eps.fish
This expands, prints and then sets the variable $e. This allows to
preview an expansion and then use it by just using $e.
2020-02-20 21:58:30 +00:00

4 lines
98 B
Fish

function eps --description 'Expand, print and set variable $e'
set -g e $argv
echo $e
end