mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
221eb9b90a
Closes #11507
7 lines
171 B
Bash
7 lines
171 B
Bash
#
|
|
# 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"
|
|
}
|