浏览代码

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.
Cooper Maruyama 9 年之前
父节点
当前提交
9264d75d5d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins/coffee/coffee.plugin.zsh

+ 1 - 1
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'