From 38eb7129d31dfcad9a44cb7ba1aa10b4db23819a Mon Sep 17 00:00:00 2001 From: Bruno Heridet Date: Mon, 14 Oct 2019 12:10:27 +0200 Subject: [PATCH] doc: add links to bg, fg and jobs in disown command [ci skip] --- sphinx_doc_src/cmds/disown.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx_doc_src/cmds/disown.rst b/sphinx_doc_src/cmds/disown.rst index 575b1ac86..2cc3607aa 100644 --- a/sphinx_doc_src/cmds/disown.rst +++ b/sphinx_doc_src/cmds/disown.rst @@ -17,7 +17,7 @@ Description Jobs in the list of jobs are sent a hang-up signal when fish terminates, which usually causes the job to terminate; ``disown`` allows these processes to continue regardless. -If no process is specified, the most recently-used job is removed (like ``bg`` and ``fg``). If one or more PIDs are specified, jobs with the specified process IDs are removed from the job list. Invalid jobs are ignored and a warning is printed. +If no process is specified, the most recently-used job is removed (like :ref:`bg ` and :ref:`fg `). If one or more PIDs are specified, jobs with the specified process IDs are removed from the job list. Invalid jobs are ignored and a warning is printed. If a job is stopped, it is sent a signal to continue running, and a warning is printed. It is not possible to use the ``bg`` builtin to continue a job once it has been disowned. @@ -28,4 +28,4 @@ Example ``firefox &; disown`` will start the Firefox web browser in the background and remove it from the job list, meaning it will not be closed when the fish process is closed. -``disown (jobs -p)`` removes all jobs from the job list without terminating them. +``disown (jobs -p)`` removes all :ref:`jobs ` from the job list without terminating them.