##// END OF EJS Templates
Initial messing around....
Initial messing around. Latex tab completion will have to be done outside the normal completer logic as the completer line splitting logic uses \\ as a special character to split lines on. I probably want to put the latex completions first and it if finds any matches, don't do any other completion logic. The only issue is that might short circuit dir/path matching on windows. Hmmm.

File last commit:

r16134:7f5cbd62
r17700:7b6d94ef
Show More
example-demo.py
43 lines | 1.2 KiB | text/x-python | PythonLexer
Jörgen Stenarson
fixes to demo.py due to unicode changes in pycolorize
r8306 # -*- coding: utf-8 -*-
Fernando Perez
Restore Demo example (and tested that it works)
r4436 """A simple interactive demo to illustrate the use of IPython's Demo class.
Any python script can be run as a demo, but that does little more than showing
it on-screen, syntax-highlighted in one shot. If you add a little simple
markup, you can stop at specified intervals and return to the ipython prompt,
resuming execution later.
Jörgen Stenarson
fixes to demo.py due to unicode changes in pycolorize
r8306
This is a unicode test, åäö
Fernando Perez
Restore Demo example (and tested that it works)
r4436 """
Thomas Kluyver
Make print syntax in GUI integration examples Python 3 compatible.
r6453 from __future__ import print_function
Fernando Perez
Restore Demo example (and tested that it works)
r4436
Thomas Kluyver
Make print syntax in GUI integration examples Python 3 compatible.
r6453 print('Hello, welcome to an interactive IPython demo.')
print('Executing this block should require confirmation before proceeding,')
print('unless auto_all has been set to true in the demo object')
Fernando Perez
Restore Demo example (and tested that it works)
r4436
# The mark below defines a block boundary, which is a point where IPython will
# stop execution and return to the interactive prompt.
# <demo> --- stop ---
x = 1
y = 2
# <demo> --- stop ---
# the mark below makes this block as silent
# <demo> silent
Thomas Kluyver
Make print syntax in GUI integration examples Python 3 compatible.
r6453 print('This is a silent block, which gets executed but not printed.')
Fernando Perez
Restore Demo example (and tested that it works)
r4436
# <demo> --- stop ---
# <demo> auto
Thomas Kluyver
Make print syntax in GUI integration examples Python 3 compatible.
r6453 print('This is an automatic block.')
print('It is executed without asking for confirmation, but printed.')
Fernando Perez
Restore Demo example (and tested that it works)
r4436 z = x+y
Thomas Kluyver
Make print syntax in GUI integration examples Python 3 compatible.
r6453 print('z=',x)
Fernando Perez
Restore Demo example (and tested that it works)
r4436
# <demo> --- stop ---
# This is just another normal block.
Thomas Kluyver
Make print syntax in GUI integration examples Python 3 compatible.
r6453 print('z is now:', z)
Fernando Perez
Restore Demo example (and tested that it works)
r4436
Thomas Kluyver
Make print syntax in GUI integration examples Python 3 compatible.
r6453 print('bye!')