dotfiles/vscode/.vscode/extensions/kevinrose.vsc-python-indent-1.18.0/.github/ISSUE_TEMPLATE/bad_indentation.md
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

578 B

name about title labels assignees
Suboptimal Indentation Indentation is not working as desired indentation

What the code looks like before pressing enter:

def my_example():
    pass|  # Use "|" to show where the cursor is. Keep your code nice and short!

What I want the code to look like after pressing enter:

def my_example():
    pass
|

What the code actually looks like after pressing enter:

def my_example():
    pass
    |