summaryrefslogtreecommitdiff
path: root/plugins/marktext/marktext.plugin.zsh
blob: 1da85bcca8c8682b6e65f9364933ce8a391631bc (plain)
1
2
3
4
5
6
7
#
# 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"
}