Reputation: 6871
An opened .py
file in minimized view.
If I want to view the code details I just navigate to the method or class I want and switch to insert
Mode as shown below.
How do I do I minimize back the code view? I am using vim's Python-mode
plug in.
Upvotes: 0
Views: 605
Reputation: 21
you can use z+<>
shortcuts:
z+o
to open a foldingz+c
to close a foldingz+O
to open all foldings [from current selection if I'm not wrong]z+C
to close all foldings [from current selection if I'm not wrong]Upvotes: 2