bookmarks.cson 805 B

1234567891011121314151617181920212223
  1. 'menu': [
  2. {
  3. 'label': 'Edit'
  4. 'submenu': [
  5. {
  6. 'label': 'Bookmark'
  7. 'submenu': [
  8. { 'label': 'View All', 'command': 'bookmarks:view-all' }
  9. { 'label': 'Toggle Bookmark', 'command': 'bookmarks:toggle-bookmark' }
  10. { 'label': 'Jump to Next Bookmark', 'command': 'bookmarks:jump-to-next-bookmark' }
  11. { 'label': 'Jump to Previous Bookmark', 'command': 'bookmarks:jump-to-previous-bookmark' }
  12. { 'label': 'Select to Next Bookmark', 'command': 'bookmarks:select-to-next-bookmark' }
  13. { 'label': 'Select to Previous Bookmark', 'command': 'bookmarks:select-to-previous-bookmark' }
  14. ]
  15. }
  16. ]
  17. }
  18. ]
  19. 'context-menu': {
  20. 'atom-text-editor': [
  21. { 'label': 'Toggle bookmark', 'command': 'bookmarks:toggle-bookmark' }
  22. ]
  23. }