prezto/modules/osx/init.zsh

22 lines
370 B
Bash
Raw Normal View History

2012-02-01 12:37:51 +08:00
#
# Defines Mac OS X aliases and functions.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2012-07-24 03:00:44 +08:00
# Return if requirements are not found.
2012-06-03 02:20:57 +08:00
if [[ "$OSTYPE" != darwin* ]]; then
return 1
fi
2012-08-05 02:48:32 +08:00
#
# Aliases
#
2014-02-03 09:08:55 +08:00
# Changes directory to the current Finder directory.
2011-10-12 11:13:58 +08:00
alias cdf='cd "$(pfd)"'
2014-02-03 09:08:55 +08:00
# Pushes directory to the current Finder directory.
2011-10-12 11:13:58 +08:00
alias pushdf='pushd "$(pfd)"'