orderthings.json 440 B

1234567891011121314151617181920212223242526
  1. {
  2. "context-menu": {
  3. "atom-text-editor": [
  4. {
  5. "label": "Fetch orderthings",
  6. "command": "orderthings:fetch"
  7. }
  8. ]
  9. },
  10. "menu": [
  11. {
  12. "label": "Packages",
  13. "submenu": [
  14. {
  15. "label": "Order all the things!",
  16. "submenu": [
  17. {
  18. "label": "Fetch",
  19. "command": "orderthings:fetch"
  20. }
  21. ]
  22. }
  23. ]
  24. }
  25. ]
  26. }