1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 23:09:44 +00:00
prezto/modules/z/init.zsh

20 lines
348 B
Bash
Raw Normal View History

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