1
0
mirror of https://github.com/wting/autojump synced 2026-03-02 03:49:26 +00:00

Implements #126. Options passed to j will now be parsed. -s short option for

--stat added, jumpstat alias removed.

Options passed to the `j` function will now be passed on autojump. As a result,
directories beginning with `-` are no longer supported.

A -s short alias for --stat is added. Instead of using jumpstat, use `j --stat`
or `j -s` instead.
This commit is contained in:
William Ting
2012-05-27 11:24:49 -10:00
parent d194429782
commit 32566eb89d
6 changed files with 28 additions and 11 deletions

View File

@@ -37,7 +37,7 @@ wrapper function.
--purge\ \ \ \ \ \ \ \ \ \ \ \ \ deletes\ database\ entries\ that\ no\ longer\ exist\ on\ system
--stat\ \ \ \ \ \ \ \ \ \ \ \ \ \ show\ database\ entries\ and\ their\ key\ weights
-s,\ --stat\ \ \ \ \ \ \ \ \ \ \ \ \ \ show\ database\ entries\ and\ their\ key\ weights
--version\ \ \ \ \ \ \ \ \ \ \ show\ version\ information\ and\ exit
\f[]
@@ -120,6 +120,8 @@ All negative key weights are purged automatically.
.RE
.SS KNOWN ISSUES
.IP \[bu] 2
Does not support directories that begin with \f[C]-\f[].
.IP \[bu] 2
zsh (bug #86)
.RS 2
.PP

View File

@@ -6,7 +6,7 @@ Options must be passed to 'autojump' and not the 'j' wrapper function.
--purge deletes database entries that no longer exist on system
--stat show database entries and their key weights
-s, --stat show database entries and their key weights
--version show version information and exit
@@ -48,6 +48,8 @@ Options must be passed to 'autojump' and not the 'j' wrapper function.
## KNOWN ISSUES
- Does not support directories that begin with `-`.
- zsh (bug #86)
Tab completion does not work.