mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 00:21:13 +00:00
d5bef142d4
PR #1793 introduced helper functions for OS detection in some modules. These helpers require a module dependency on the 'helper' module.
25 lines
392 B
Bash
25 lines
392 B
Bash
#
|
|
# Defines macOS aliases and functions.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
#
|
|
|
|
# Load dependencies.
|
|
pmodload 'helper'
|
|
|
|
# Return if requirements are not found.
|
|
if ! is-darwin; then
|
|
return 1
|
|
fi
|
|
|
|
#
|
|
# Aliases
|
|
#
|
|
|
|
# Changes directory to the current Finder directory.
|
|
alias cdf='cd "$(pfd)"'
|
|
|
|
# Pushes directory to the current Finder directory.
|
|
alias pushdf='pushd "$(pfd)"'
|