1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
Description: Add the instruction to enable autojump to its manpage
This modification is done in the source file manpage.md, then compiled with:
pandoc -st man -o autojump.1 manpage.md
Author: Tanguy Ortolo <tanguy+debian@ortolo.eu>
Last-Update: 2012-04-14
Index: autojump/autojump.1
===================================================================
--- autojump.orig/autojump.1 2012-04-14 13:04:36.000000000 +0200
+++ autojump/autojump.1 2012-04-14 13:07:46.510124694 +0200
@@ -4,7 +4,15 @@
autojump - a faster way to navigate your filesystem
.SS SYNOPSIS
.PP
-Jump to a previously visited directory \[aq]foobar\[aq]:
+Load autojump:
+.IP
+.nf
+\f[C]
+.\ /usr/share/autojump/autojump.sh
+\f[]
+.fi
+.PP
+Jump to a previously visited directory `foobar':
.IP
.nf
\f[C]
@@ -28,8 +36,7 @@
Directories must be visited first before they can be jumped to.
.SS OPTIONS
.PP
-Options must be passed to \[aq]autojump\[aq] and not the \[aq]j\[aq]
-wrapper function.
+Options must be passed to `autojump' and not the `j' wrapper function.
.IP
.nf
\f[C]
@@ -71,7 +78,7 @@
Change Directory Weight
.RS 2
.PP
-To manually change a directory\[aq]s key weight, you can edit the file
+To manually change a directory's key weight, you can edit the file
\f[I]$XDG_DATA_HOME/autojump/autojump.txt\f[].
Each entry has two columns.
The first is the key weight and the second is the path:
Index: autojump/manpage.md
===================================================================
--- autojump.orig/manpage.md 2012-04-14 13:04:36.000000000 +0200
+++ autojump/manpage.md 2012-04-14 13:07:23.021839625 +0200
@@ -7,6 +7,10 @@
autojump - a faster way to navigate your filesystem
## SYNOPSIS
+Load autojump:
+
+ . /usr/share/autojump/autojump.sh
+
Jump to a previously visited directory 'foobar':
j foo
|