ohmyzsh/plugins/marktext/marktext.plugin.zsh

7 lines
171 B
Bash
Executable file

#
# If marktext is called without an argument, open MarkText
# If marktext is passed a file, open it in MarkText
#
function marktext() {
open -a "MarkText.app" "$1"
}