vsc-python-indent
vsc-python-indent copied to clipboard
Correctly indent python code on the fly, in Visual Studio Code.
Love the extension. Thanks for the work. It would be great if str literals could be continued when broken across lines. I had a line of code Like this: ```python...
- Issue Type: `Performance` - Extension Name: `vsc-python-indent` - Extension Version: `1.17.0` - OS Version: `Windows_NT x64 10.0.18363` - VS Code version: `1.68.1` :warning: Make sure to **attach** this file...
If I have the following code ```python sql = ('SELECT mode FROM pg_locks JOIN pg_class ' 'ON pg_class.oid = pg_locks.relation ' 'JOIN pg_namespace ON pg_namespace.oid = pg_class.relnamespace ' f'WHERE pg_class.relname...
Let's us enter in a code line like Pycharm IDE It's should be looks like the right side of the image 
See [PEP8 Indentation](https://www.python.org/dev/peps/pep-0008/#indentation) for example. **Minimal code example:** What I want the code to look like after pressing `enter`: ```python # Add 4 spaces (an extra level of indentation) to...
First of all, I love this extension. It has made using VS Code such a breeze, so thank you immensely for making it available. This may be closer to a...
**Minimal code example:** What the code looks like before pressing `enter`: ```python if True: for i in range(5): print(i) else: print('no break!') else:| ``` What I want the code to...
What the code looks like before pressing Enter: ```python def foo(): return| ``` When I get to the above state by typing in the function from scratch, then pressing Enter...
This is more of a question or comment than a feature request or bug report: What's the rationale for putting the cursor just before the closing bracket rather than just...