##// 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:

r20547:8f4e2b41
r22286:7243b34e
Show More
list_subdirs.ipy
6 lines | 194 B | text/plain | TextLexer
# A simple IPython script that lists files in all subdirs
from IPython.display import FileLinks, display
dirs =!ls -d */
for d in dirs:
if d != '__pycache__/':
display(FileLinks(d))