Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: How can you re-edit a loaded function?



> On 03 March 2021 at 17:44 zsh@xxxxxxxxxxxxxx wrote:
> I load this function 'f' and many others from .zshrc
> 
>  > which f
> 
> f () { F=$1 ffmpeg -i "$F" -af "volume=2" "loud$F" }
> 
> 
> But imagine I would like to do an on-the-fly / temporary edit
> but how can i 'get at' the function without either re-editing/reloading 
> .zshrc.

autoload -Uz zed
zed -f f

pws




Messages sorted by: Reverse Date, Date, Thread, Author