Files
config/.oh-my-zsh/plugins/marktext/marktext.plugin.zsh
2025-07-22 16:18:19 +01:00

8 lines
171 B
Bash
Executable File

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