mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 03:51:12 +00:00
26 lines
463 B
Bash
26 lines
463 B
Bash
|
#
|
||
|
# Defines yank aliases.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Daniel Carrillo
|
||
|
#
|
||
|
|
||
|
# Return if requirements are not found.
|
||
|
if (( ! $+commands[yank] )); then
|
||
|
return 1
|
||
|
fi
|
||
|
|
||
|
#
|
||
|
# Aliases
|
||
|
#
|
||
|
|
||
|
alias yenv="env | yank -d =" # yank environment variables
|
||
|
|
||
|
#
|
||
|
# Piping aliases
|
||
|
#
|
||
|
|
||
|
alias yl="yank -l" # yank a whole line from command output
|
||
|
alias yle="yank -l -- sh" # yank a whole line from command output and
|
||
|
# exec the line as a command
|