Files
miasma-os/files/system/etc/skel/.oh-my-zsh/plugins/marktext/marktext.plugin.zsh
2026-03-24 20:17:22 +11:00

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"
}