mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Updating help string for ctrl-enter and alt-enter.
This commit is contained in:
parent
c841e006a3
commit
47534d2a28
@ -109,14 +109,14 @@ var IPython = (function (IPython) {
|
||||
}
|
||||
},
|
||||
'alt+enter' : {
|
||||
help : 'run cell',
|
||||
help : 'run cell, insert below',
|
||||
handler : function (event) {
|
||||
IPython.notebook.execute_selected_cell('alt');
|
||||
return false;
|
||||
}
|
||||
},
|
||||
'ctrl+enter' : {
|
||||
help : 'run cell',
|
||||
help : 'run cell, select below',
|
||||
handler : function (event) {
|
||||
IPython.notebook.execute_selected_cell('ctrl');
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user