##// END OF EJS Templates
Merge pull request #12884 from MrMino/vi_mode_prompt_strip...
Merge pull request #12884 from MrMino/vi_mode_prompt_strip Strip vi-mode style prompts from the input

File last commit:

r20547:8f4e2b41
r26497:9cbb3ba6 merge
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))