##// END OF EJS Templates
Moving files to top level.
Moving files to top level.

File last commit:

r16073:e8c594f2
r16112:43623688
Show More
User Interface.ipynb
444 lines | 19.5 KiB | text/plain | TextLexer
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 {
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 "User Interface"
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 ]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 "This notebook describes the user interface of the IPython Notebook. This includes both mouse and keyboard based navigation and interaction.\n",
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 "\n",
"<div class=\"alert\" style=\"margin: 10px\">\n",
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 "As of IPython 2.0, the user interface has changed significantly. Because of this we highly recommend existing users to review this information after upgrading to IPython 2.0. All new users of IPython should review this information as well.\n",
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 "</div>"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Modal editor"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 "Starting with IPython 2.0, the IPython Notebook has a modal user interface. This means that the keyboard does different things depending on which mode the Notebook is in. There are two modes: edit mode and command mode."
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 ]
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Edit mode"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Edit mode is indicated by a green cell border and a prompt showing in the editor area:\n",
"\n",
Brian E. Granger
Fixing links and text of User Experience notebook.
r14098 "<img src=\"images/edit_mode.png\">\n",
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 "\n",
"When a cell is in edit mode, you can type into the cell, like a normal text editor.\n",
"\n",
"<div class=\"alert alert-success\" style=\"margin: 10px\">\n",
"Enter edit mode by pressing `enter` or using the mouse to click on a cell's editor area.\n",
"</div>"
]
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Command mode"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Command mode is indicated by a grey cell border:\n",
"\n",
Brian E. Granger
Fixing links and text of User Experience notebook.
r14098 "<img src=\"images/command_mode.png\">\n",
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 "\n",
"When you are in command mode, you are able to edit the notebook as a whole, but not type into individual cells. Most importantly, in command mode, the keyboard is mapped to a set of shortcuts that let you perform notebook and cell actions efficiently. For example, if you are in command mode and you press `c`, you will copy the current cell - no modifier is needed.\n",
"\n",
"<div class=\"alert alert-error\" style=\"margin: 10px\">\n",
"Don't try to type into a cell in command mode; unexpected things will happen!\n",
"</div>\n",
"\n",
"<div class=\"alert alert-success\" style=\"margin: 10px\">\n",
"Enter command mode by pressing `esc` or using the mouse to click *outside* a cell's editor area.\n",
"</div>"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Mouse navigation"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"All navigation and actions in the Notebook are available using the mouse through the menubar and toolbar, which are both above the main Notebook area:\n",
"\n",
Brian E. Granger
Fixing links and text of User Experience notebook.
r14098 "<img src=\"images/menubar_toolbar.png\">"
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 ]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The first idea of mouse based navigation is that **cells can be selected by clicking on them.** The currently selected cell gets a grey or green border depending on whether the notebook is in edit or command mode. If you click inside a cell's editor area, you will enter edit mode. If you click on the prompt or output area of a cell you will enter command mode.\n",
"\n",
"If you are running this notebook in a live session (not on http://nbviewer.ipython.org) try selecting different cells and going between edit and command mode. Try typing into a cell."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The second idea of mouse based navigation is that **cell actions usually apply to the currently selected cell**. Thus if you want to run the code in a cell, you would select it and click the \"Play\" button in the toolbar or the \"Cell:Run\" menu item. Similarly, to copy a cell you would select it and click the \"Copy\" button in the toolbar or the \"Edit:Copy\" menu item. With this simple pattern, you should be able to do most everything you need with the mouse.\n",
"\n",
"Markdown and heading cells have one other state that can be modified with the mouse. These cells can either be rendered or unrendered. When they are rendered, you will see a nice formatted representation of the cell's contents. When they are unrendered, you will see the raw text source of the cell. To render the selected cell with the mouse, click the \"Play\" button in the toolbar or the \"Cell:Run\" menu item. To unrender the selected cell, double click on the cell."
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Keyboard Navigation"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 "The modal user interface of the IPython Notebook has been optimized for efficient keyboard usage. This is made possible by having two different sets of keyboard shortcuts: one set that is active in edit mode and another in command mode.\n",
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 "\n",
"The most important keyboard shortcuts are `enter`, which enters edit mode, and `esc`, which enters command mode.\n",
"\n",
"In edit mode, most of the keyboard is dedicated to typing into the cell's editor. Thus, in edit mode there are relatively few shortcuts:"
]
},
{
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 "cell_type": "markdown",
"metadata": {},
"source": [
"The `display_edit_shortcuts()` function used here is defined in the [Utilities section](#Utilities) at the bottom of this notebook."
]
},
{
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 "cell_type": "code",
"collapsed": false,
"input": [
"display_edit_shortcuts()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
Brian E. Granger
Updating CSS for UI example.
r14102 "<div class=\"hbox\"><div class=\"box-flex0\"><div class=\"quickhelp\"><span class=\"shortcut_key\">esc</span><span class=\"shortcut_descr\"> : command mode</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">ctrl+m</span><span class=\"shortcut_descr\"> : command mode</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">shift+enter</span><span class=\"shortcut_descr\"> : run cell</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">ctrl+enter</span><span class=\"shortcut_descr\"> : run cell, select below</span></div></div><div class=\"box-flex0\"><div class=\"quickhelp\"><span class=\"shortcut_key\">alt+enter</span><span class=\"shortcut_descr\"> : run cell, insert below</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">alt+-</span><span class=\"shortcut_descr\"> : split cell</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">meta+s</span><span class=\"shortcut_descr\"> : save notebook</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">ctrl+s</span><span class=\"shortcut_descr\"> : save notebook</span></div></div></div>"
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 ],
"output_type": "display_data"
},
{
"javascript": [
"var help = IPython.quick_help.build_edit_help();\n",
"help.children().first().remove();\n",
"this.append_output({output_type: 'display_data', html: help.html()});"
],
"metadata": {},
"output_type": "display_data",
"text": [
Brian E. Granger
Updating CSS for UI example.
r14102 "<IPython.core.display.Javascript at 0x10e8d1a50>"
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 ]
}
],
Brian E. Granger
Opps forgot some CSS.
r14103 "prompt_number": 17
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 },
{
"cell_type": "markdown",
"metadata": {},
"source": [
"There are two other keyboard shortcuts in edit mode that are not listed here:\n",
"\n",
"* `tab`: trigger \"tab\" completion\n",
"* `shift+tab`: open the tooltip"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"In command mode, the entire keyboard is available for shortcuts:"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"display_command_shortcuts()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<div class=\"hbox\"><div class=\"box-flex0\"><div class=\"quickhelp\"><span class=\"shortcut_key\">enter</span><span class=\"shortcut_descr\"> : edit mode</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">shift+enter</span><span class=\"shortcut_descr\"> : run cell</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">ctrl+enter</span><span class=\"shortcut_descr\"> : run cell, select below</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">alt+enter</span><span class=\"shortcut_descr\"> : run cell, insert below</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">y</span><span class=\"shortcut_descr\"> : to code</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">m</span><span class=\"shortcut_descr\"> : to markdown</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">t</span><span class=\"shortcut_descr\"> : to raw</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">1</span><span class=\"shortcut_descr\"> : to heading 1</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">2</span><span class=\"shortcut_descr\"> : to heading 2</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">3</span><span class=\"shortcut_descr\"> : to heading 3</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">4</span><span class=\"shortcut_descr\"> : to heading 4</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">5</span><span class=\"shortcut_descr\"> : to heading 5</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">6</span><span class=\"shortcut_descr\"> : to heading 6</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">up</span><span class=\"shortcut_descr\"> : select previous cell</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">down</span><span class=\"shortcut_descr\"> : select next cell</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">k</span><span class=\"shortcut_descr\"> : select previous cell</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">j</span><span class=\"shortcut_descr\"> : select next cell</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">ctrl+k</span><span class=\"shortcut_descr\"> : move cell up</span></div></div><div class=\"box-flex0\"><div class=\"quickhelp\"><span class=\"shortcut_key\">ctrl+j</span><span class=\"shortcut_descr\"> : move cell down</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">a</span><span class=\"shortcut_descr\"> : insert cell above</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">b</span><span class=\"shortcut_descr\"> : insert cell below</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">x</span><span class=\"shortcut_descr\"> : cut cell</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">c</span><span class=\"shortcut_descr\"> : copy cell</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">v</span><span class=\"shortcut_descr\"> : paste cell below</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">z</span><span class=\"shortcut_descr\"> : undo last delete</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">d</span><span class=\"shortcut_descr\"> : delete cell (press twice)</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">shift+=</span><span class=\"shortcut_descr\"> : merge cell below</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">s</span><span class=\"shortcut_descr\"> : save notebook</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">meta+s</span><span class=\"shortcut_descr\"> : save notebook</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">ctrl+s</span><span class=\"shortcut_descr\"> : save notebook</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">l</span><span class=\"shortcut_descr\"> : toggle line numbers</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">o</span><span class=\"shortcut_descr\"> : toggle output</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">shift+o</span><span class=\"shortcut_descr\"> : toggle output</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">h</span><span class=\"shortcut_descr\"> : keyboard shortcuts</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">i</span><span class=\"shortcut_descr\"> : interrupt kernel</span></div><div class=\"quickhelp\"><span class=\"shortcut_key\">.</span><span class=\"shortcut_descr\"> : restart kernel</span></div></div></div>"
],
"output_type": "display_data"
},
{
"javascript": [
"var help = IPython.quick_help.build_command_help();\n",
"help.children().first().remove();\n",
"this.append_output({output_type: 'display_data', html: help.html()});"
],
"metadata": {},
"output_type": "display_data",
"text": [
Brian E. Granger
Opps forgot some CSS.
r14103 "<IPython.core.display.Javascript at 0x10e8d1650>"
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 ]
}
],
Brian E. Granger
Opps forgot some CSS.
r14103 "prompt_number": 18
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 },
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Here the rough order in which we recommend learning the command mode shortcuts:\n",
"\n",
"1. Basic navigation: `enter`, `shift-enter`, `up/k`, `down/j`\n",
"2. Saving the notebook: `s`\n",
"2. Cell types: `y`, `m`, `1-6`, `t`\n",
"3. Cell creation and movement: `a`, `b`, `ctrl+k`, `ctrl+j`\n",
"4. Cell editing: `x`, `c`, `v`, `d`, `z`, `shift+=`\n",
"5. Kernel operations: `i`, `.`"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Keyboard shortcut customization"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Starting with IPython 2.0 keyboard shortcuts in command and edit mode are fully customizable. These customizations are made using the IPython JavaScript API. Here is an example that makes the `r` key available for running a cell:"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"%%javascript\n",
"\n",
"IPython.keyboard_manager.command_shortcuts.add_shortcut('r', {\n",
" help : 'run cell',\n",
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 " help_index : 'zz',\n",
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 " handler : function (event) {\n",
" IPython.notebook.execute_cell();\n",
" return false;\n",
" }}\n",
");"
],
"language": "python",
"metadata": {},
"outputs": [
{
"javascript": [
"\n",
"IPython.keyboard_manager.command_shortcuts.add_shortcut('r', {\n",
" help : 'run cell',\n",
Brian E. Granger
Updating CSS for UI example.
r14102 " help_index : 'zz',\n",
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 " handler : function (event) {\n",
" IPython.notebook.execute_cell();\n",
" return false;\n",
" }}\n",
");"
],
"metadata": {},
"output_type": "display_data",
"text": [
Brian E. Granger
Updating CSS for UI example.
r14102 "<IPython.core.display.Javascript at 0x10e8d1890>"
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 ]
}
],
Brian E. Granger
Updating CSS for UI example.
r14102 "prompt_number": 7
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 },
{
"cell_type": "markdown",
"metadata": {},
"source": [
"There are a couple of points to mention about this API:\n",
"\n",
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 "* The `help_index` field is used to sort the shortcuts in the Keyboard Shortcuts help dialog. It defaults to `zz`.\n",
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 "* When a handler returns `false` it indicates that the event should stop propagating and the default action should not be performed. For further details about the `event` object or event handling, see the jQuery docs.\n",
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 "* If you don't need a `help` or `help_index` field, you can simply pass a function as the second argument to `add_shortcut`."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"%%javascript\n",
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 "\n",
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 "IPython.keyboard_manager.command_shortcuts.add_shortcut('r', function (event) {\n",
" IPython.notebook.execute_cell();\n",
" return false;\n",
"});"
],
"language": "python",
"metadata": {},
"outputs": [
{
"javascript": [
"\n",
"IPython.keyboard_manager.command_shortcuts.add_shortcut('r', function (event) {\n",
" IPython.notebook.execute_cell();\n",
" return false;\n",
"});"
],
"metadata": {},
"output_type": "display_data",
"text": [
"<IPython.core.display.Javascript at 0x1019baf90>"
]
}
],
"prompt_number": 11
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 "Likewise, to remove a shortcut, use `remove_shortcut`:"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"%%javascript\n",
"\n",
"IPython.keyboard_manager.command_shortcuts.remove_shortcut('r');"
],
"language": "python",
"metadata": {},
"outputs": [
{
"javascript": [
"\n",
"IPython.keyboard_manager.command_shortcuts.remove_shortcut('r');"
],
"metadata": {},
"output_type": "display_data",
"text": [
Brian E. Granger
Updating CSS for UI example.
r14102 "<IPython.core.display.Javascript at 0x10e8d1950>"
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 ]
}
],
Brian E. Granger
Work on shortcuts and examples notebook.
r14100 "prompt_number": 8
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 },
{
"cell_type": "markdown",
"metadata": {},
"source": [
Hans Meine
give hint on where to find custom.js
r15812 "If you want your keyboard shortcuts to be active for all of your notebooks, put the above API calls into your `<profile>/static/custom/custom.js` file."
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 ]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Utilities"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We use the following functions to generate the keyboard shortcut listings above."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
Brian E. Granger
Updating CSS for UI example.
r14102 "from IPython.display import Javascript, display, HTML\n",
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 "\n",
"t = \"\"\"var help = IPython.quick_help.build_{0}_help();\n",
"help.children().first().remove();\n",
"this.append_output({{output_type: 'display_data', html: help.html()}});\"\"\"\n",
"\n",
"def display_command_shortcuts():\n",
" display(Javascript(t.format('command')))\n",
"\n",
"def display_edit_shortcuts():\n",
Brian E. Granger
Updating CSS for UI example.
r14102 " display(Javascript(t.format('edit')))\n",
"\n",
"display(HTML(\"\"\"\n",
"<style>\n",
".shortcut_key {display: inline-block; width: 15ex; text-align: right; font-family: monospace;}\n",
".shortcut_descr {display: inline-block;}\n",
Brian E. Granger
Opps forgot some CSS.
r14103 "div.quickhelp {float: none; width: 100%;}\n",
Brian E. Granger
Updating CSS for UI example.
r14102 "</style>\n",
"\"\"\"))"
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 ],
"language": "python",
"metadata": {},
Brian E. Granger
Updating CSS for UI example.
r14102 "outputs": [
{
"html": [
"\n",
"<style>\n",
".shortcut_key {display: inline-block; width: 15ex; text-align: right; font-family: monospace;}\n",
".shortcut_descr {display: inline-block;}\n",
Brian E. Granger
Opps forgot some CSS.
r14103 "div.quickhelp {float: none; width: 100%;}\n",
Brian E. Granger
Updating CSS for UI example.
r14102 "</style>\n"
],
"metadata": {},
"output_type": "display_data",
"text": [
Brian E. Granger
Opps forgot some CSS.
r14103 "<IPython.core.display.HTML at 0x10e8b0710>"
Brian E. Granger
Updating CSS for UI example.
r14102 ]
}
],
Brian E. Granger
Opps forgot some CSS.
r14103 "prompt_number": 16
Brian E. Granger
Adding basic examples notebook about modal editing.
r14097 }
],
"metadata": {}
}
]
}