##// END OF EJS Templates
Back to explicit styles for the prompt tokens...
Back to explicit styles for the prompt tokens I didn't notice these had changed in Carreau's PR. The prompt number in particular was looking horrible with the default settings. I have reverted back to what we had before.

File last commit:

r16136:94a4d14e
r22286:7243b34e
Show More
list_pyfiles.ipy
5 lines | 182 B | text/plain | TextLexer
# A simple IPython script that provides Notebook links to .py files in the cwd
from IPython.display import FileLink, display
files =!ls *.py
for f in files:
display(FileLink(f))