mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
Version bump to v21.1.0, update relevant documentation.
This commit is contained in:
parent
8b13949173
commit
50e6054e13
2
AUTHORS
2
AUTHORS
@ -20,3 +20,5 @@ made autojump that much better (in no particular order):
|
|||||||
Tom Parker
|
Tom Parker
|
||||||
Liyang Chang
|
Liyang Chang
|
||||||
Jez Ng
|
Jez Ng
|
||||||
|
jjk-jacky
|
||||||
|
Daniel Hahler
|
||||||
|
@ -2,6 +2,12 @@
|
|||||||
# Summary of release changes, see commit history for more details:
|
# Summary of release changes, see commit history for more details:
|
||||||
# https://github.com/joelthelion/autojump/commits/master/
|
# https://github.com/joelthelion/autojump/commits/master/
|
||||||
|
|
||||||
|
* Release v21.1:
|
||||||
|
|
||||||
|
- install.sh is rewritten to add support for --path and --destdir options,
|
||||||
|
making it easier for package maintainers to install autojump specifically into
|
||||||
|
certain locations. Thanks to jjk-jacky for his contributions.
|
||||||
|
|
||||||
* Release v21:
|
* Release v21:
|
||||||
|
|
||||||
- New mailing list for developer discussion and announcements:
|
- New mailing list for developer discussion and announcements:
|
||||||
|
@ -220,7 +220,7 @@ KNOWN ISSUES
|
|||||||
|
|
||||||
Do this:
|
Do this:
|
||||||
|
|
||||||
export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND ; }history -a"
|
export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND ;} history -a"
|
||||||
|
|
||||||
- The jump function `j` does not support directories that begin with
|
- The jump function `j` does not support directories that begin with
|
||||||
`-`. If you want to jump a directory called `--music`, try using
|
`-`. If you want to jump a directory called `--music`, try using
|
||||||
|
@ -34,7 +34,7 @@ import re
|
|||||||
import shutil
|
import shutil
|
||||||
from tempfile import NamedTemporaryFile
|
from tempfile import NamedTemporaryFile
|
||||||
|
|
||||||
VERSION = 'release-v21.0.5'
|
VERSION = 'release-v21.1.0'
|
||||||
MAX_KEYWEIGHT = 1000
|
MAX_KEYWEIGHT = 1000
|
||||||
MAX_STORED_PATHS = 1000
|
MAX_STORED_PATHS = 1000
|
||||||
COMPLETION_SEPARATOR = '__'
|
COMPLETION_SEPARATOR = '__'
|
||||||
|
@ -175,8 +175,12 @@ export\ PROMPT_COMMAND="history\ -a"
|
|||||||
.fi
|
.fi
|
||||||
.PP
|
.PP
|
||||||
Do this:
|
Do this:
|
||||||
.PP
|
.IP
|
||||||
export PROMPT_COMMAND="${PROMPT_COMMAND}; history -a"
|
.nf
|
||||||
|
\f[C]
|
||||||
|
export\ PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND\ ;}\ history\ -a"
|
||||||
|
\f[]
|
||||||
|
.fi
|
||||||
.RE
|
.RE
|
||||||
.IP \[bu] 2
|
.IP \[bu] 2
|
||||||
The jump function \f[C]j\f[] does not support directories that begin
|
The jump function \f[C]j\f[] does not support directories that begin
|
||||||
|
@ -91,7 +91,7 @@ Options must be passed to 'autojump' and not the 'j' wrapper function.
|
|||||||
|
|
||||||
Do this:
|
Do this:
|
||||||
|
|
||||||
export PROMPT_COMMAND="${PROMPT_COMMAND}; history -a"
|
export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND ;} history -a"
|
||||||
|
|
||||||
- The jump function `j` does not support directories that begin with `-`. If you
|
- The jump function `j` does not support directories that begin with `-`. If you
|
||||||
want to jump a directory called `--music`, try using `j music` instead of `j
|
want to jump a directory called `--music`, try using `j music` instead of `j
|
||||||
|
Loading…
Reference in New Issue
Block a user