mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 09:58:47 -07:00
221eb9b90a
Closes #11507
8 lines
171 B
Bash
8 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"
|
|
}
|