File tree Expand file tree Collapse file tree 2 files changed +0
-21
lines changed
src/jupyter_contrib_nbextensions/nbextensions/navigation-hotkeys Expand file tree Collapse file tree 2 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,6 @@ define([
7
7
"use strict" ;
8
8
9
9
var add_command_shortcuts = {
10
- 'esc' : {
11
- help : 'Enter edit mode' ,
12
- help_index : 'aa' ,
13
- handler : function ( ) {
14
- Jupyter . notebook . edit_mode ( ) ;
15
- return false ;
16
- }
17
- } ,
18
-
19
10
'home' : {
20
11
help : 'Go to top' ,
21
12
help_index : 'ga' ,
@@ -90,16 +81,6 @@ define([
90
81
} ;
91
82
92
83
var add_edit_shortcuts = {
93
- 'alt-minus' : {
94
- help : 'Split cell at cursor' ,
95
- help_index : 'eb' ,
96
- handler : function ( ) {
97
- Jupyter . notebook . edit_mode ( ) ;
98
- Jupyter . notebook . split_cell ( ) ;
99
- Jupyter . notebook . edit_mode ( ) ;
100
- return false ;
101
- }
102
- } ,
103
84
'alt-=' : {
104
85
help : 'Merge cell with previous cell' ,
105
86
help_index : 'eb' ,
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ Edit-mode hotkeys:
7
7
8
8
* ` pageup ` - scroll page up
9
9
* ` pagedown ` - scroll page down
10
- * ` Alt ` - ` - ` - Split cell and keep cursor position
11
10
* ` Alt ` - ` + ` - Combine cell and keep cursor position
12
11
* ` Alt ` -` n ` - Toggle line number display in current codecell
13
12
* ` Shift ` -` Enter ` - Execute cell, goto next cell and stay in edit mode if next cell is a code cell or unrendered markdown cell
@@ -16,7 +15,6 @@ Edit-mode hotkeys:
16
15
17
16
Command-mode hotkeys:
18
17
19
- * ` esc ` - toggle to edit mode
20
18
* ` home ` - Go to top of notebook
21
19
* ` end ` - Go to bottom of notebook
22
20
* ` pageup ` - scroll page up
You can’t perform that action at this time.
0 commit comments