keymap.cson 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. # Your keymap
  2. #
  3. # Pulsar keymaps work similarly to style sheets. Just as style sheets use
  4. # selectors to apply styles to elements, Pulsar keymaps use selectors to associate
  5. # keystrokes with events in specific contexts. Unlike style sheets however,
  6. # each selector can only be declared once.
  7. #
  8. # You can create a new keybinding in this file by typing "key" and then hitting
  9. # tab.
  10. #
  11. # Here's an example taken from Pulsar's built-in keymap:
  12. #
  13. # 'atom-text-editor':
  14. # 'enter': 'editor:newline'
  15. #
  16. # 'atom-workspace':
  17. # 'ctrl-shift-p': 'core:move-up'
  18. # 'ctrl-p': 'core:move-down'
  19. #
  20. # You can find more information about keymaps in these guides:
  21. # * https://pulsar-edit.dev/docs/launch-manual/sections/using-pulsar/#customizing-keybindings
  22. # * https://pulsar-edit.dev/docs/launch-manual/sections/behind-pulsar#keymaps-in-depth
  23. #
  24. # If you're having trouble with your keybindings not working, try the
  25. # Keybinding Resolver: `Cmd+.` on macOS and `Ctrl+.` on other platforms. See the
  26. # Debugging Guide for more information:
  27. # * https://pulsar-edit.dev/docs/launch-manual/sections/core-hacking/#check-your-keybindings
  28. #
  29. # This file uses CoffeeScript Object Notation (CSON).
  30. # If you are unfamiliar with CSON, you can read more about it in the
  31. # Pulsar Launch Manual:
  32. # https://pulsar-edit.dev/docs/launch-manual/sections/using-pulsar/#configuring-with-cson