diff --git a/IPython/html/static/notebook/js/cell.js b/IPython/html/static/notebook/js/cell.js index c54d28a..48702b9 100644 --- a/IPython/html/static/notebook/js/cell.js +++ b/IPython/html/static/notebook/js/cell.js @@ -171,7 +171,8 @@ var IPython = (function (IPython) { var that = this; var shortcuts = IPython.keyboard_manager.edit_shortcuts; - // if this is an edit_shortcuts shortcut, we've already handled it. + // if this is an edit_shortcuts shortcut, the global keyboard/shortcut + // manager will handle it if (shortcuts.use_shortcut(event)) { return true; } return false; @@ -254,7 +255,7 @@ var IPython = (function (IPython) { }; /** - * Either delegates keyboard shortcut handling to either IPython keyboard + * Delegates keyboard shortcut handling to either IPython keyboard * manager when in command mode, or CodeMirror when in edit mode * * @method handle_keyevent