From f2ce3fe1175a97c7ec053e97a43e2f210b393b75 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Sun, 31 Aug 2014 12:57:58 -0500 Subject: [PATCH] Adding README.md and renaming plugin --- plugins/marked/marked.plugin.zsh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 plugins/marked/marked.plugin.zsh diff --git a/plugins/marked/marked.plugin.zsh b/plugins/marked/marked.plugin.zsh deleted file mode 100644 index 56863ade5..000000000 --- a/plugins/marked/marked.plugin.zsh +++ /dev/null @@ -1,12 +0,0 @@ -# -# If marked is called without an argument, open Marked -# If marked is passed a file, open it in Marked -# -function marked() { - if [ "$1" ] - then - open -a "marked 2.app" "$1" - else - open -a "marked 2.app" - fi -}