Skip to content

Commit

Permalink
Merge pull request ipython#4916 from ellisonbg/modalbehavior
Browse files Browse the repository at this point in the history
Fine tuning the behavior of the modal UI

swap back shift- and ctrl-enter, to their rightful places.
  • Loading branch information
minrk committed Jan 31, 2014
2 parents 7a0ea33 + 0a3461f commit 78e4627
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
8 changes: 4 additions & 4 deletions IPython/html/static/notebook/js/keyboardmanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,18 +88,18 @@ var IPython = (function (IPython) {
}
},
'shift+enter' : {
help : 'run cell',
help : 'run cell, select below',
help_index : 'ba',
handler : function (event) {
IPython.notebook.execute_cell();
IPython.notebook.execute_cell_and_select_below();
return false;
}
},
'ctrl+enter' : {
help : 'run cell, select below',
help : 'run cell',
help_index : 'bb',
handler : function (event) {
IPython.notebook.execute_cell_and_select_below();
IPython.notebook.execute_cell();
return false;
}
},
Expand Down
16 changes: 7 additions & 9 deletions IPython/html/static/notebook/js/notebook.js
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,6 @@ var IPython = (function (IPython) {
target_cell.code_mirror.clearHistory();
source_element.remove();
this.select(i);
this.edit_mode();
this.set_dirty(true);
};
};
Expand Down Expand Up @@ -878,7 +877,9 @@ var IPython = (function (IPython) {
target_cell.code_mirror.clearHistory();
source_element.remove();
this.select(i);
this.edit_mode();
if ((source_cell instanceof IPython.TextCell) && source_cell.rendered) {
target_cell.render();
}
this.set_dirty(true);
};
};
Expand Down Expand Up @@ -910,7 +911,6 @@ var IPython = (function (IPython) {
target_cell.code_mirror.clearHistory();
source_element.remove();
this.select(i);
this.edit_mode();
this.set_dirty(true);
};
};
Expand Down Expand Up @@ -947,8 +947,10 @@ var IPython = (function (IPython) {
target_cell.code_mirror.clearHistory();
source_element.remove();
this.select(i);
if ((source_cell instanceof IPython.TextCell) && source_cell.rendered) {
target_cell.render();
}
};
this.edit_mode();
this.set_dirty(true);
$([IPython.events]).trigger('selected_cell_type_changed.Notebook',
{'cell_type':'heading',level:level}
Expand Down Expand Up @@ -1441,11 +1443,7 @@ var IPython = (function (IPython) {
return;
}

// Only insert a new cell, if we ended up in an already populated cell
var next_text = this.get_cell(cell_index+1).get_text();
if (/\S/.test(next_text) === true) {
this.insert_cell_below('code');
}
this.insert_cell_below('code');
this.select(cell_index+1);
this.edit_mode();
this.set_dirty(true);
Expand Down
8 changes: 4 additions & 4 deletions IPython/html/tests/casperjs/test_cases/execute_code_cell.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ casper.notebook_test(function () {
var cell = IPython.notebook.get_cell(0);
cell.set_text('a=11; print(a)');
cell.clear_output();
IPython.utils.press_ctrl_enter();
IPython.utils.press_shift_enter();
});

this.wait_for_output(0);
Expand All @@ -31,7 +31,7 @@ casper.notebook_test(function () {
var result = this.get_output_cell(0);
var num_cells = this.get_cells_length();
this.test.assertEquals(result.text, '11\n', 'cell execute (using ctrl-enter)');
this.test.assertEquals(num_cells, 2, 'ctrl-enter adds a new cell at the bottom')
this.test.assertEquals(num_cells, 2, 'shift-enter adds a new cell at the bottom')
});

// do it again with the keyboard shortcut
Expand All @@ -41,7 +41,7 @@ casper.notebook_test(function () {
var cell = IPython.notebook.get_cell(0);
cell.set_text('a=12; print(a)');
cell.clear_output();
IPython.utils.press_shift_enter();
IPython.utils.press_ctrl_enter();
});

this.wait_for_output(0);
Expand All @@ -50,7 +50,7 @@ casper.notebook_test(function () {
var result = this.get_output_cell(0);
var num_cells = this.get_cells_length();
this.test.assertEquals(result.text, '12\n', 'cell execute (using shift-enter)');
this.test.assertEquals(num_cells, 1, 'shift-enter adds no new cell at the bottom')
this.test.assertEquals(num_cells, 1, 'ctrl-enter adds no new cell at the bottom')
});

// press the "play" triangle button in the toolbar
Expand Down

0 comments on commit 78e4627

Please sign in to comment.