Python code boilerplate generation/editing like in Sublime for VS Code

In a Sublime .py file when you type the letter c you get a suggestion for a new class. Press Tab and you get

enter image description here

with the multicursor adequately set. How do you do this in VS Code? The py plugin with IntelliSense only fills per keyword, Intellicode and TabNine are overkill.

>Solution :

You can download snippet extensions (like this one, that contains the snippet you’re interested in)

Otherwise, you can also define your own snippets, as specified in the VS Code documentation

Leave a Reply