You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
958 B

преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 6 години
преди 10 години
преди 10 години
преди 10 години
преди 8 години
  1. KNOWN ISSUES
  2. ------------
  3. - autojump does not support directories that begin with `-`.
  4. - For bash users, autojump keeps track of directories by modifying
  5. `$PROMPT_COMMAND`. Do not overwrite `$PROMPT_COMMAND`:
  6. export PROMPT_COMMAND="history -a"
  7. Instead append to the end of the existing \$PROMPT\_COMMAND:
  8. export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND ;} history -a"
  9. REPORTING BUGS
  10. --------------
  11. For any questions or issues please visit:
  12. https://github.com/wting/autojump/issues
  13. AUTHORS
  14. -------
  15. autojump was originally written by Joël Schaerer, and currently maintained by
  16. William Ting. More contributors can be found in `AUTHORS`.
  17. COPYRIGHT
  18. ---------
  19. Copyright © 2016 Free Software Foundation, Inc. License GPLv3+: GNU GPL version
  20. 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are
  21. free to change and redistribute it. There is NO WARRANTY, to the extent
  22. permitted by law.