##// END OF EJS Templates
fix qtconsole description...
MinRK -
Show More
@@ -216,13 +216,15 b' aliases.update(dict('
216
216
217 plain = 'IPythonQtConsoleApp.plain',
217 plain = 'IPythonQtConsoleApp.plain',
218 pure = 'IPythonQtConsoleApp.pure',
218 pure = 'IPythonQtConsoleApp.pure',
219 gui_completion = 'ConsoleWidget.gui_completion',
220 style = 'IPythonWidget.syntax_style',
219 style = 'IPythonWidget.syntax_style',
221 stylesheet = 'IPythonQtConsoleApp.stylesheet',
220 stylesheet = 'IPythonQtConsoleApp.stylesheet',
222 colors = 'ZMQInteractiveShell.colors',
221 colors = 'ZMQInteractiveShell.colors',
223
222
224 editor = 'IPythonWidget.editor',
223 editor = 'IPythonWidget.editor',
224 paging = 'ConsoleWidget.paging',
225 ))
225 ))
226 aliases['gui-completion'] = 'ConsoleWidget.gui_completion'
227
226
228
227 #-----------------------------------------------------------------------------
229 #-----------------------------------------------------------------------------
228 # IPythonQtConsole
230 # IPythonQtConsole
@@ -237,9 +239,15 b' class IPythonQtConsoleApp(BaseIPythonApplication):'
237 The IPython QtConsole.
239 The IPython QtConsole.
238
240
239 This launches a Console-style application using Qt. It is not a full
241 This launches a Console-style application using Qt. It is not a full
240 console, in that launched terminal subprocesses will not.
242 console, in that launched terminal subprocesses will not be able to accept
243 input.
244
245 The QtConsole supports various extra features beyond the Terminal IPython
246 shell, such as inline plotting with matplotlib, via:
247
248 ipython qtconsole --pylab=inline
241
249
242 The QtConsole supports various extra features beyond the
250 as well as saving your session as HTML, and printing the output.
243
251
244 """
252 """
245 examples = _examples
253 examples = _examples
General Comments 0
You need to be logged in to leave comments. Login now