My attempt to optimize my emacs load time <1 second
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
233 B

  1. # -*- mode: snippet -*-
  2. # name: Vlocity pubsub
  3. # key: pubsub
  4. # --
  5. // import pubsub from 'vlocity_cmt/pubsub';
  6. pubsub.register('${1:channel}', {
  7. result: this.$1Triggered.bind(this),
  8. error: this.$1ErrorTriggered.bind(this)
  9. });