-
Notifications
You must be signed in to change notification settings - Fork 16
/
Default (Windows).sublime-keymap
119 lines (117 loc) · 3.87 KB
/
Default (Windows).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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[
{ "keys": ["up"], "command": "i_julia_view_previous",
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{ "keys": ["down"], "command": "i_julia_view_next",
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{ "keys": ["shift+enter"], "command": "i_julia_enter", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{ "keys": ["enter"], "command": "i_julia_shift_enter", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{ "keys": ["escape"], "command": "i_julia_escape", "args": {},
"context":
[
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "setting.julia", "operator": "equal", "operand": true }
]
},
{ "keys": ["backspace"], "command": "i_julia_backspace", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
]
},
/*{ "keys": ["ctrl+backspace"], "command": "julia_ctrl_backspace", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
]
},*/
{ "keys": ["left"], "command": "i_julia_left", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true }
]
},
{ "keys": ["home"], "command": "i_julia_home", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true }
]
},
{ "keys": ["shift+left"], "command": "i_julia_shift_left", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true }
]
},
{ "keys": ["shift+home"], "command": "i_julia_shift_home", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true }
]
},
{ "keys": ["ctrl+shift+r"], "command": "i_julia_restart",
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true }
]
},
{ "keys": ["shift+enter"], "command": "i_julia_transfer_current", "args": {"scope": "selection"},
"context":
[
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "source.julia"},
{ "key": "setting.julia", "operator": "equal", "operand": false }
]
},
{ "keys": ["shift+enter"], "command": "i_julia_transfer_current", "args": {"scope": "lines"},
"context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "source.julia"},
{ "key": "setting.julia", "operator": "equal", "operand": false }
]
},
{ "keys": ["ctrl+shift+enter"], "command": "i_julia_transfer_current", "args": {"scope": "file"},
"context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "source.julia"}
]
},
{ "keys": ["f5"], "command": "i_julia_transfer_current", "args": {"scope": "file_with_include"},
"context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "source.julia"}
]
},
{ "keys": ["f5"], "command": "i_julia_interrupt", "args": {},
"context":
[
{ "key": "setting.julia", "operator": "equal", "operand": true }
]
}
]