This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/z/init.zsh

20 lines
348 B
Bash
Raw Normal View History

2012-01-31 23:37:51 -05:00
#
# Maintains a frequently used directory list for fast directory changes.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-08-31 00:02:50 -04:00
# Set the directory changing command.
_Z_CMD='j'
2012-04-11 20:51:10 -04:00
# Prevent symbolic link resolution.
_Z_NO_RESOLVE_SYMLINKS=1
2012-04-11 20:51:10 -04:00
# Source module files.
source "${0:h}/external/z.sh"
2012-04-11 20:51:10 -04:00
# Cleanup.
unset _Z_{CMD,NO_RESOLVE_SYMLINKS}
2011-08-31 00:02:50 -04:00