Python Grid Editor for VS CodePython Grid Editor is a visual editor for Python code that helps you understand and edit Python's indentation-based code blocks using a grid-based interface. Installation
Getting Started
FeaturesIndentation Context VisualizationPython Grid Editor displays each level of indentation as a separate column, allowing you to visualize the block structure of your Python code. Each context column shows what block type (if, for, while, etc.) that line belongs to. Edit and Navigation Modes
The current mode is displayed in the status bar when the grid editor is focused. Keyboard ShortcutsNavigation Mode
Edit Mode
Working with IndentationAdding Indentation (Tab)Press Tab while in edit mode to increase the indentation level of the current line. This will add the appropriate context from the code structure. Removing Indentation (Shift+Tab)Press Shift+Tab while in edit mode to decrease the indentation level, removing the outermost context. |