-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeymap.cson
More file actions
37 lines (33 loc) · 950 Bytes
/
keymap.cson
File metadata and controls
37 lines (33 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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'
#
'body':
'ctrl-x ctrl-s': 'core:save'
'ctrl-x ctrl-right': 'pane:show-next-item'
'ctrl-x ctrl-left': 'pane:show-previous-item'
'ctrl-x ctrl-c': 'application:quit'
'ctrl-x ctrl-f': 'closed:Open File'
'.atom-workspace':
'ctrl-g': 'core:cancel'
'atom-text-editor':
'ctrl-x h': 'core:select-all'
'ctrl-j': 'editor:newline'
'atom-text-editor:not([mini])':
'tab tab': 'editor:indent'
'tab': 'emacs-flow:auto-indent'
'cltr-tab': 'snippets:expand'