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
|
|
|
|
2012-08-31 20:30:14 +00:00
|
|
|
# Set the directory changing command.
|
|
|
|
_Z_CMD='j'
|
2012-04-12 00:51:10 +00:00
|
|
|
|
2012-08-31 20:30:14 +00:00
|
|
|
# Prevent symbolic link resolution.
|
|
|
|
_Z_NO_RESOLVE_SYMLINKS=1
|
2012-04-12 00:51:10 +00:00
|
|
|
|
2012-08-31 20:30:14 +00:00
|
|
|
# Source module files.
|
|
|
|
source "${0:h}/external/z.sh"
|
2012-04-12 00:51:10 +00:00
|
|
|
|
2012-08-31 20:30:14 +00:00
|
|
|
# Cleanup.
|
|
|
|
unset _Z_{CMD,NO_RESOLVE_SYMLINKS}
|
2011-08-31 04:02:50 +00:00
|
|
|
|