forked from maximsch2/SublimeIPythonNotebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default (Linux).sublime-keymap
112 lines (110 loc) · 4.61 KB
/
Default (Linux).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
[
{
"keys": ["shift+enter"], "command": "inb_run_in_notebook", "args": {"inplace" : false},
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["ctrl+enter"], "command": "inb_run_in_notebook", "args": {"inplace" : true},
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["backspace"], "command": "inb_backspace",
"context":
[
{ "key": "setting.ipython_notebook", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }
]
},
{
"keys": ["super+s"], "command": "inb_save_notebook",
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["ctrl+s"], "command": "inb_save_notebook",
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["ctrl+m", "d"], "command": "inb_delete_current_cell",
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["ctrl+m", "a"], "command": "inb_insert_cell_above",
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["ctrl+m", "b"], "command": "inb_insert_cell_below",
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["ctrl+m", "y"], "command": "inb_change_cell_type", "args": {"new_type" : "code"},
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["ctrl+m", "m"], "command": "inb_change_cell_type", "args": {"new_type" : "markdown"},
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["ctrl+m", "t"], "command": "inb_change_cell_type", "args": {"new_type" : "raw"},
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["ctrl+m", "s"], "command": "inb_save_notebook",
"context" : [ { "key": "setting.ipython_notebook", "operator": "equal", "operand": true }]
},
{
"keys": ["up"], "command": "inb_move_up",
"context" : [
{ "key": "setting.ipython_notebook", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{
"keys": ["ctrl+up"], "command": "inb_move_to_cell", "args": {"up" : true},
"context" : [
{ "key": "setting.ipython_notebook", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{
"keys": ["ctrl+down"], "command": "inb_move_to_cell", "args": {"up" : false},
"context" : [
{ "key": "setting.ipython_notebook", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{
"keys": ["ctrl+m", "p"], "command": "inb_move_to_cell", "args": {"up" : true},
"context" : [
{ "key": "setting.ipython_notebook", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{
"keys": ["ctrl+m", "n"], "command": "inb_move_to_cell", "args": {"up" : false},
"context" : [
{ "key": "setting.ipython_notebook", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{
"keys": ["down"], "command": "inb_move_down",
"context" : [
{ "key": "setting.ipython_notebook", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{
"keys": ["left"], "command": "inb_move_left",
"context" : [
{ "key": "setting.ipython_notebook", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
},
{
"keys": ["right"], "command": "inb_move_right",
"context" : [
{ "key": "setting.ipython_notebook", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
}
]