##// END OF EJS Templates
Keep kernel-related bindings together in code.
Fernando Perez -
Show More
@@ -130,9 +130,9 b' var IPython = (function (IPython) {'
130 130 that.select_next();
131 131 that.control_key_active = false;
132 132 return false;
133 } else if (event.which === 72 && that.control_key_active) {
134 // Show keyboard shortcuts = h
135 that.show_keyboard_shortcuts();
133 } else if (event.which === 76 && that.control_key_active) {
134 // Toggle line numbers = l
135 that.cell_toggle_line_numbers();
136 136 that.control_key_active = false;
137 137 return false;
138 138 } else if (event.which === 73 && that.control_key_active) {
@@ -140,16 +140,16 b' var IPython = (function (IPython) {'
140 140 IPython.notebook.kernel.interrupt();
141 141 that.control_key_active = false;
142 142 return false;
143 } else if (event.which === 76 && that.control_key_active) {
144 // Toggle line numbers = l
145 that.cell_toggle_line_numbers();
146 that.control_key_active = false;
147 return false;
148 143 } else if (event.which === 190 && that.control_key_active) {
149 144 // Restart kernel = . # matches qt console
150 145 IPython.notebook.restart_kernel();
151 146 that.control_key_active = false;
152 147 return false;
148 } else if (event.which === 72 && that.control_key_active) {
149 // Show keyboard shortcuts = h
150 that.show_keyboard_shortcuts();
151 that.control_key_active = false;
152 return false;
153 153 } else if (that.control_key_active) {
154 154 that.control_key_active = false;
155 155 return true;
General Comments 0
You need to be logged in to leave comments. Login now