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