marked2.plugin.zsh 161 B

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