On Sun, 24 Mar 2019, Manfred Lotz wrote: > In zsh there is an option NOHUP which can be set like follows: > setopt nohup > > Then when exiting the shell runnning jobs will NOT be terminated by > zsh. I only get a warning, and then I repeat Ctrl-D to exit the shell > but the jobs are still running.
Use the `disown` builtin: disown removes the specified job from the list of jobs. The job itself continues to exist, but fish does not keep track of it any longer. For example, `disown %1`. David Adam zanc...@ucc.gu.uwa.edu.au _______________________________________________ Fish-users mailing list Fish-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/fish-users