##// END OF EJS Templates
Merge pull request #5372 from minrk/no-close-strings...
Merge pull request #5372 from minrk/no-close-strings Don't autoclose strings, because CodeMirror's behavior makes it confusing and awkward to type triple-quoted strings (and these are very common in Python). An issue about this was filed in CodeMirror itself: https://github.com/marijnh/CodeMirror/issues/2385

File last commit:

r15619:957ea4d8
r15843:9c1c7a7e merge
Show More
arrow_keys.js
24 lines | 956 B | application/javascript | JavascriptLexer
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 //
// Check for errors with up and down arrow presses in a non-empty notebook.
//
casper.notebook_test(function () {
var result = this.evaluate(function() {
Brian E. Granger
Fixing JS tests.
r14080 IPython.notebook.command_mode();
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 pos0 = IPython.notebook.get_selected_index();
Brian E. Granger
Removing old keyboard handling from IPython.utils.
r15619 IPython.keyboard.trigger_keydown('b');
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 pos1 = IPython.notebook.get_selected_index();
Brian E. Granger
Removing old keyboard handling from IPython.utils.
r15619 IPython.keyboard.trigger_keydown('b');
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 pos2 = IPython.notebook.get_selected_index();
// Simulate the "up arrow" and "down arrow" keys.
Brian E. Granger
Removing old keyboard handling from IPython.utils.
r15619 IPython.keyboard.trigger_keydown('up');
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 pos3 = IPython.notebook.get_selected_index();
Brian E. Granger
Removing old keyboard handling from IPython.utils.
r15619 IPython.keyboard.trigger_keydown('down');
Paul Ivanov
a test of the arrow keys for non-empty notebook
r13282 pos4 = IPython.notebook.get_selected_index();
return pos0 == 0 &&
pos1 == 1 &&
pos2 == 2 &&
pos3 == 1 &&
pos4 == 2;
});
this.test.assertTrue(result, 'Up/down arrow okay in non-empty notebook.');
});