mirror of
https://gitee.com/mirrors/ohmyzsh.git
synced 2026-07-30 03:15:21 +08:00
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"
|
|
}
|