mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
daa496bc39
This reverts commitcf358d8fd3
, reversing changes made to8eace445a7
.
138 lines
2.8 KiB
Groff
138 lines
2.8 KiB
Groff
.\" Automatically generated by Pandoc 1.16.0.2
|
|
.\"
|
|
.TH "autojump" "1" "2018\-09\-06" "release\-v22.5.1" ""
|
|
.hy
|
|
.SS NAME
|
|
.PP
|
|
autojump \- a faster way to navigate your filesystem
|
|
.SS DESCRIPTION
|
|
.PP
|
|
autojump is a faster way to navigate your filesystem.
|
|
It works by maintaining a database of the directories you use the most
|
|
from the command line.
|
|
.PP
|
|
\f[I]Directories must be visited first before they can be jumped to.\f[]
|
|
.SS USAGE
|
|
.PP
|
|
\f[C]j\f[] is a convenience wrapper function around \f[C]autojump\f[].
|
|
Any option that can be used with \f[C]autojump\f[] can be used with
|
|
\f[C]j\f[] and vice versa.
|
|
.IP \[bu] 2
|
|
Jump To A Directory That Contains \f[C]foo\f[]:
|
|
.RS 2
|
|
.IP
|
|
.nf
|
|
\f[C]
|
|
j\ foo
|
|
\f[]
|
|
.fi
|
|
.RE
|
|
.IP \[bu] 2
|
|
Jump To A Child Directory:
|
|
.RS 2
|
|
.PP
|
|
Sometimes it\[aq]s convenient to jump to a child directory
|
|
(sub\-directory of current directory) rather than typing out the full
|
|
name.
|
|
.IP
|
|
.nf
|
|
\f[C]
|
|
jc\ bar
|
|
\f[]
|
|
.fi
|
|
.RE
|
|
.IP \[bu] 2
|
|
Open File Manager To Directories (instead of jumping):
|
|
.RS 2
|
|
.PP
|
|
Instead of jumping to a directory, you can open a file explorer window
|
|
(Mac Finder, Windows Explorer, GNOME Nautilus, etc.) to the directory
|
|
instead.
|
|
.IP
|
|
.nf
|
|
\f[C]
|
|
jo\ music
|
|
\f[]
|
|
.fi
|
|
.PP
|
|
Opening a file manager to a child directory is also supported:
|
|
.IP
|
|
.nf
|
|
\f[C]
|
|
jco\ images
|
|
\f[]
|
|
.fi
|
|
.RE
|
|
.IP \[bu] 2
|
|
Using Multiple Arguments:
|
|
.RS 2
|
|
.PP
|
|
Let\[aq]s assume the following database:
|
|
.IP
|
|
.nf
|
|
\f[C]
|
|
30\ \ \ /home/user/mail/inbox
|
|
10\ \ \ /home/user/work/inbox
|
|
\f[]
|
|
.fi
|
|
.PP
|
|
\f[C]j\ in\f[] would jump into /home/user/mail/inbox as the higher
|
|
weighted entry.
|
|
However you can pass multiple arguments to autojump to prefer a
|
|
different entry.
|
|
In the above example, \f[C]j\ w\ in\f[] would then change directory to
|
|
/home/user/work/inbox.
|
|
.RE
|
|
.PP
|
|
For more options refer to help:
|
|
.IP
|
|
.nf
|
|
\f[C]
|
|
autojump\ \-\-help
|
|
\f[]
|
|
.fi
|
|
.SS KNOWN ISSUES
|
|
.IP \[bu] 2
|
|
autojump does not support directories that begin with \f[C]\-\f[].
|
|
.IP \[bu] 2
|
|
For bash users, autojump keeps track of directories by modifying
|
|
\f[C]$PROMPT_COMMAND\f[].
|
|
Do not overwrite \f[C]$PROMPT_COMMAND\f[]:
|
|
.RS 2
|
|
.IP
|
|
.nf
|
|
\f[C]
|
|
export\ PROMPT_COMMAND="history\ \-a"
|
|
\f[]
|
|
.fi
|
|
.PP
|
|
Instead append to the end of the existing $PROMPT_COMMAND:
|
|
.IP
|
|
.nf
|
|
\f[C]
|
|
export\ PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND\ ;}\ history\ \-a"
|
|
\f[]
|
|
.fi
|
|
.RE
|
|
.SS REPORTING BUGS
|
|
.PP
|
|
For any questions or issues please visit:
|
|
.IP
|
|
.nf
|
|
\f[C]
|
|
https://github.com/wting/autojump/issues
|
|
\f[]
|
|
.fi
|
|
.SS AUTHORS
|
|
.PP
|
|
autojump was originally written by Joël Schaerer, and currently
|
|
maintained by William Ting.
|
|
More contributors can be found in \f[C]AUTHORS\f[].
|
|
.SS COPYRIGHT
|
|
.PP
|
|
Copyright © 2016 Free Software Foundation, Inc.
|
|
License GPLv3+: GNU GPL version 3 or later
|
|
<http://gnu.org/licenses/gpl.html>.
|
|
This is free software: you are free to change and redistribute it.
|
|
There is NO WARRANTY, to the extent permitted by law.
|