From 9264d75d5d1c10de370b0c32606b70768541eaaa Mon Sep 17 00:00:00 2001 From: Cooper Maruyama Date: Mon, 15 Jun 2015 01:22:40 -0700 Subject: [PATCH] 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. --- plugins/coffee/coffee.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/coffee/coffee.plugin.zsh b/plugins/coffee/coffee.plugin.zsh index 77cb663f..6d1ce5ce 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'