blob: 5abddd04f2e1f9e11f15d3ed05eadec70713ee74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Keybindings require three things to be fully defined: A selector that is
# matched against the focused element, the keystroke and the command to
# execute.
#
# Below is a basic keybinding which registers on all platforms by applying to
# the root workspace element.
# For more detailed documentation see
# https://atom.io/docs/latest/advanced/keymaps
'atom-text-editor.vim-mode:not(.insert-mode)':
':': 'ex-mode:open'
|