1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 05:50:47 +00:00
Go to file
2012-03-15 13:06:45 -10:00
tools minor fixes 2010-11-25 15:33:53 +01:00
_j fix completion for zsh (thanks simon!) 2010-04-27 14:16:08 +02:00
.gitignore attempt fixing jumpapplet, even though I think nobody uses it :) 2011-08-19 11:22:12 +02:00
autojump More helpful error message 2012-02-08 08:03:44 +01:00
autojump.1 Added snippets to documentation (README and man page) showing use of main command to print out matches. 2012-01-07 08:20:09 -06:00
autojump.bash fix bug where $XDG_DATA_HOME is not set properly when switching between users via su 2012-03-15 13:06:45 -10:00
autojump.py turns out this symbolic link is required for jumpapplet now 2011-09-27 15:22:16 +02:00
autojump.sh fix bash local installation paths 2012-02-08 11:27:43 -10:00
autojump.zsh fix bug where $XDG_DATA_HOME is not set properly when switching between users via su 2012-03-15 13:06:45 -10:00
ChangeLog add changelog with v18, v19 details 2012-03-13 16:23:42 -10:00
COPYING license stuff 2009-05-13 11:32:19 +02:00
git-version.sh avoid making the tag on the wrongly numbered autojump 2011-11-18 14:25:54 +01:00
icon.png path specific action + decorator 2009-03-27 11:46:21 +01:00
install.sh change default line to add to .bashrc/.zshrc message 2012-03-15 11:00:43 -10:00
jumpapplet Merge branch 'contrib/xdg-base-directory' of git://git.ortolo.eu/pkg-autojump into tanguy 2011-08-26 15:59:02 +02:00
make_release.sh automated version numbering commit 2011-11-18 14:27:31 +01:00
README.rst tweak mac installation instructions 2012-03-11 14:58:28 -10:00
uninstall.sh change default line to add to .bashrc/.zshrc message 2012-03-15 11:00:43 -10:00

========
AUTOJUMP
========

----------------------------
A ``cd`` command that learns
----------------------------

One of the most used shell commands is ``cd``. A quick survey among my friends revealed that between 10 and 20% of all commands they type are actually ``cd`` commands! Unfortunately, jumping from one part of your system to another with ``cd`` requires to enter almost the full path, which isn't very practical and requires a lot of keystrokes.

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. The jumpstat command shows you the current contents of the database. You need to work a little bit before the database becomes usable. Once your database is reasonably complete, you can "jump" to a commonly used directory by typing:

 j <dir>

where <dir> is a few characters of the directory you want to jump to. It will jump to the most used  directory whose name matches the pattern given in dirspec. Note that autojump isn't meant to be a drop-in replacement for cd, but rather a complement. Cd is fine when staying in the same area of the filesystem; autojump is there to help when you need to jump far away from your current location.

Autojump supports tab completion starting with bash v4.0+.

Pierre Gueth contributed a very nice applet for freedesktop desktops (Gnome/KDE/...). It is called "jumpapplet", try it!

Thanks to Simon Marache-Francisco's outstanding work, autojump now works perfectly with zsh.

Usage Examples
==============

::

 j music

would jump to ``/home/user/music/``, if that's a commonly directory traversed by command line. ::

 autojump music

displays the directory autojump would jump to if invoked. ::

 jumpstat

displays a listing of tracked directories and their respective weights. For example: ::

 ...
 54.5:	/home/shared/misc
 60.0:	/home/user/Dropbox
 96.9:	/home/user/code/autojump
 161.7:	/home/user
 Total key weight: 1077

The "key weight" reflects the amount of time you spend in a directory.

Authors
=======

- Joel Schaerer (joel.schaerer (at) laposte.net)
- autojump applet: Pierre Gueth
- zsh support: Simon Marache-Francisco, William Ting
- installation: Daniel Jackoway, William Ting, and others.

License
=======

autojump is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

autojump is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with autojump.  If not, see <http://www.gnu.org/licenses/>.

Requirements
============

Python v2.6+ or 3.0+

Installation
============

Automatic Installation
----------------------

**Linux**

autojump is included in the following distro repositories, please use relevant package management utilities to install (e.g. yum, apt-get, etc):

- Debian testing/unstable, Ubuntu, Linux Mint

  On Debian only, autojump requires manual activation for policy reasons. Please see ``/usr/share/doc/autojump/README.Debian``.

- RedHat, Fedora, CentOS
- ArchLinux
- Gentoo
- Frugalware
- Slackware

**Mac**

Homebrew is the recommended installation method for Mac OS X::

 brew install autojump

A MacPorts installation method is also `available <https://trac.macports.org/browser/trunk/dports/sysutils/autojump/Portfile>`_.

**Other**

Please check the wiki for an up to date listing of installation methods.

Manual Installation
-------------------

Grab a copy of autojump::

 git clone git://github.com/joelthelion/autojump.git

Run the installation script::

 cd autojump
 ./install.sh [ --local ] [ --zsh ]

and follow on screen instructions.

Use --local to install into current user's home directory.

Use --zsh to install for Z shell.

Manual Uninstallation
---------------------

It is recommended to use your distribution's relevant package management utilities, unless you installed manually or ran into uninstallation issues.

Grab a copy of autojump::

 git clone git://github.com/joelthelion/autojump.git

Run the uninstallation script::

 cd autojump
 ./uninstall.sh

and follow on screen instructions.

If you keep getting ``autojump: command not found`` at the Bash prompt, do:``unset PROMPT_COMMAND``. You can also restart your shell.