Emacs config utilizing prelude as a base
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
138 B

  1. # name: eval { ... } if ($@) { ... }
  2. # key: eval
  3. # --
  4. eval {
  5. ${1:# do something risky...}
  6. };
  7. if (\$@) {
  8. ${2:# handle failure...}
  9. }