-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDefault.sublime-keymap
30 lines (30 loc) · 1013 Bytes
/
Default.sublime-keymap
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
[
{
"keys": ["ctrl+alt+i"],
"command": "insert_import",
"context": [
{ "key": "selector", "operator": "equal", "operand": "source.ts, source.ts.unittest, source.tsx, source.js, source.jsx" }
]
},
{
"keys": ["alt+i", "alt+l"],
"command": "list_imports",
"context": [
{ "key": "selector", "operator": "equal", "operand": "source.ts, source.ts.unittest, source.tsx, source.js, source.jsx" }
]
},
{
"keys": ["alt+i", "alt+k"],
"command": "import_from_clipboard",
"context": [
{ "key": "selector", "operator": "equal", "operand": "source.ts, source.ts.unittest, source.tsx, source.js, source.jsx" }
]
},
{
"keys": ["alt+i", "alt+s"],
"command": "update_source_modules",
"context": [
{ "key": "selector", "operator": "equal", "operand": "source.ts, source.ts.unittest, source.tsx, source.js, source.jsx" }
]
}
]