##// END OF EJS Templates
Review fixes for interactive help
anatoly techtonik -
Show More
@@ -67,8 +67,8 b' interactive_usage = """'
67 67 IPython -- An enhanced Interactive Python
68 68 =========================================
69 69
70 IPython offers fully compatible replacement for the standard Python
71 interpreter with convenient shell features, special commands, command
70 IPython offers a fully compatible replacement for the standard Python
71 interpreter, with convenient shell features, special commands, command
72 72 history mechanism and output results caching.
73 73
74 74 At your system command line, type 'ipython -h' to see the command line
@@ -100,8 +100,8 b' MAIN FEATURES'
100 100
101 101 * Dynamic object information:
102 102
103 Typing ?word or word? prints detailed information about an object. Long
104 strings (docstrings, code, etc.) get snipped in the center for brevity.
103 Typing ?word or word? prints detailed information about an object. Certain
104 long strings (code, etc.) get snipped in the center for brevity.
105 105
106 106 Typing ??word or word?? gives access to the full information without
107 107 snipping long strings. Strings that are longer than the screen are printed
@@ -121,9 +121,8 b' MAIN FEATURES'
121 121
122 122 * Search previous command history in multiple ways:
123 123
124 - Start typing, and then use Ctrl-p (previous, up) and Ctrl-n (next, down)
125 to search through the history items that match what you've typed so
126 far. At a blank prompt, Ctrl-p/Ctrl-n behave like normal arrow keys.
124 - Start typing, and then use arrow keys up/down or (Ctrl-p/Ctrl-n) to search
125 through the history items that match what you've typed so far.
127 126
128 127 - Hit Ctrl-r: opens a search prompt. Begin typing and the system searches
129 128 your history for lines that match what you've typed so far, completing as
General Comments 0
You need to be logged in to leave comments. Login now