marktext.plugin.zsh 171 B

12345678
  1. #
  2. # If marktext is called without an argument, open MarkText
  3. # If marktext is passed a file, open it in MarkText
  4. #
  5. function marktext() {
  6. open -a "MarkText.app" "$1"
  7. }