prezto/modules/osx/init.zsh

25 lines
392 B
Bash
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
# Defines macOS aliases and functions.
2012-02-01 05:37:51 +01:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Load dependencies.
pmodload 'helper'
2012-07-23 21:00:44 +02:00
# Return if requirements are not found.
if ! is-darwin; then
2012-06-02 20:20:57 +02:00
return 1
fi
2012-08-04 20:48:32 +02:00
#
# Aliases
#
2014-02-03 02:08:55 +01:00
# Changes directory to the current Finder directory.
2011-10-12 05:13:58 +02:00
alias cdf='cd "$(pfd)"'
2014-02-03 02:08:55 +01:00
# Pushes directory to the current Finder directory.
2011-10-12 05:13:58 +02:00
alias pushdf='pushd "$(pfd)"'