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