summaryrefslogtreecommitdiff
path: root/plugins/coffee
diff options
context:
space:
mode:
authorCooper Maruyama <cooperm@susteen.com>2015-06-15 01:22:40 -0700
committerMarc Cornellà <marc.cornella@live.com>2015-10-21 17:08:20 +0200
commit9264d75d5d1c10de370b0c32606b70768541eaaa (patch)
tree1720a7b277a13ad008f6a45018d11d39350d5d55 /plugins/coffee
parent405ee83af46778f79aadd46bc9df408115ec1d83 (diff)
downloadzsh-9264d75d5d1c10de370b0c32606b70768541eaaa.tar.gz
zsh-9264d75d5d1c10de370b0c32606b70768541eaaa.tar.bz2
zsh-9264d75d5d1c10de370b0c32606b70768541eaaa.zip
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.
Diffstat (limited to 'plugins/coffee')
-rw-r--r--plugins/coffee/coffee.plugin.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/coffee/coffee.plugin.zsh b/plugins/coffee/coffee.plugin.zsh
index 77cb663f7..6d1ce5ce4 100644
--- a/plugins/coffee/coffee.plugin.zsh
+++ b/plugins/coffee/coffee.plugin.zsh
@@ -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'