-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathDefault.sublime-keymap
50 lines (50 loc) · 1.28 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[
{
"command": "typescript_complete",
"args": {"characters": "."},
"keys": ["."],
"context": [ {"key": "typescript"} ]
},
{
"command": "typescript_complete",
"args": {"characters": ""},
"keys": ["ctrl+space"],
"context": [ {"key": "typescript"} ]
},
{
"command": "typescript_error_panel",
"args": {"characters": ""},
"keys": ["ctrl+shift+e"],
"context": [ {"key": "typescript"} ]
},
{
"command": "typescript_reload_project",
"args": {"characters": ""},
"keys": ["f5"],
"context": [ {"key": "typescript"} ]
},
{
"command": "typescript_definition",
"args": {"characters": ""},
"keys": ["f4"],
"context": [ {"key": "typescript"} ]
},
{
"command": "typescript_kill",
"args": {"characters": ""},
"keys": ["ctrl+shift+k"],
"context": [ {"key": "typescript"} ]
},
{
"command": "typescript_structure",
"args": {"characters": ""},
"keys": ["f3"],
"context": [ {"key": "typescript"} ]
},
{
"command": "typescript_type",
"args": {"characters": ""},
"keys": ["f1"],
"context": [ {"key": "typescript"} ]
}
]