1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00

Fix typo.

* `cfp` alias was referencing an old version of the `cf` command which
no longer exists. This has been updated to reference a valid command.
This commit is contained in:
Cooper Maruyama
2015-06-15 01:22:40 -07:00
committed by Marc Cornellà
parent 405ee83af4
commit 9264d75d5d

View File

@@ -10,7 +10,7 @@ cfc () {
}
# compile from clipboard & print
alias cfp='coffeeMe "$(clippaste)"'
alias cfp='cf "$(clippaste)"'
# compile from clipboard and copy to clipboard
alias cfpc='cfp | clipcopy'