Created
May 9, 2014 02:44
-
-
Save dmamills/63c232bbb0f6d77f56e4 to your computer and use it in GitHub Desktop.
keymap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Your keymap | |
| # | |
| # Atom keymaps work similarly to stylesheets. Just as stylesheets use selectors | |
| # to apply styles to elements, Atom keymaps use selectors to associate | |
| # keystrokes with events in specific contexts. | |
| # | |
| # You can create a new keybinding in this file by typing "key" and then hitting | |
| # tab. | |
| # | |
| # Here's an example taken from Atom's built-in keymap: | |
| # | |
| # '.editor': | |
| # 'enter': 'editor:newline' | |
| # | |
| # '.workspace': | |
| # 'ctrl-P': 'core:move-up' | |
| # 'ctrl-p': 'core:move-down' | |
| # | |
| '.editor': | |
| 'cmd-!': 'rdio:toggle' #rdio play/pause | |
| 'ctrl-shift-tab': 'pane:show-previous-item' #tab prev file | |
| 'ctrl-tab': 'pane:show-next-item' #tab next file | |
| 'cmd-~':'gist-it:gist-current-file' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment