1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 22:10:45 +00:00
wting_autojump/docs/body.md

35 lines
958 B
Markdown
Raw Normal View History

2014-01-07 18:32:35 +00:00
KNOWN ISSUES
------------
2014-01-07 18:32:35 +00:00
- autojump does not support directories that begin with `-`.
2014-01-07 18:32:35 +00:00
- For bash users, autojump keeps track of directories by modifying
`$PROMPT_COMMAND`. Do not overwrite `$PROMPT_COMMAND`:
export PROMPT_COMMAND="history -a"
2014-01-07 18:32:35 +00:00
Instead append to the end of the existing \$PROMPT\_COMMAND:
export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND ;} history -a"
2014-01-07 18:32:35 +00:00
REPORTING BUGS
--------------
2014-01-07 18:32:35 +00:00
For any questions or issues please visit:
2018-09-07 05:53:18 +00:00
https://github.com/wting/autojump/issues
2014-01-07 18:32:35 +00:00
AUTHORS
-------
autojump was originally written by Joël Schaerer, and currently maintained by
2014-01-07 18:32:35 +00:00
William Ting. More contributors can be found in `AUTHORS`.
2014-01-07 18:32:35 +00:00
COPYRIGHT
---------
2016-05-04 06:44:43 +00:00
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.