prezto_config/modules/z/init.zsh

20 lines
348 B
Bash
Raw Normal View History

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