aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/bg.txt
diff options
context:
space:
mode:
authorGravatar Mark Griffiths <mark@thebespokepixel.com>2014-08-01 03:37:32 +0100
committerGravatar Mark Griffiths <mark@thebespokepixel.com>2014-09-03 14:43:24 +0100
commitd282bc462578a6e47747c78d2d42883530f0d11e (patch)
treea6515e908d4fc1c400cb6cebaf79b1590b005804 /doc_src/bg.txt
parent1c4223889bd729ee83aa21a3450dc28f92ade641 (diff)
Documentation update
Rework for Doxygen >1.8. Moved large parts of the documentation to a simplified format, making use of Markdown enhancements and fixing bad long options.
Diffstat (limited to 'doc_src/bg.txt')
-rw-r--r--doc_src/bg.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/doc_src/bg.txt b/doc_src/bg.txt
index 9c8f593a..403f2e4a 100644
--- a/doc_src/bg.txt
+++ b/doc_src/bg.txt
@@ -1,11 +1,13 @@
\section bg bg - send jobs to background
\subsection bg-synopsis Synopsis
-<tt>bg [PID...]</tt>
+\fish{syn}
+bg [PID...]
+\endfish
\subsection bg-description Description
-\c bg sends <a href="index.html#syntax-job-control">jobs</a> to the background, resuming them if they are stopped. A background job is
+`bg` sends <a href="index.html#syntax-job-control">jobs</a> to the background, resuming them if they are stopped. A background job is
executed simultaneously with fish, and does not have access to the
keyboard. If no job is specified, the last job to be used is put in the background. If PID is specified, the jobs with the specified process group IDs are put in the background.
@@ -13,5 +15,5 @@ The PID of the desired process is usually found by using <a href="index.html#exp
\subsection bg-example Example
-<tt>bg \%1</tt> will put the job with job ID 1 in the background.
+`bg %1` will put the job with job ID 1 in the background.