All Questions
3 questions
0
votes
1
answer
939
views
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
with the multicursor adequately set. How do you do this in VS Code? The py plugin with ...
0
votes
0
answers
1k
views
VS Code Python Extension Default Snippets
This is a followup to this question. The answer in there properly answers how to override snippets, but it doesn't address the actual location of the default ones.
Recall the problematic snippet I'm ...
0
votes
1
answer
284
views
How to make VSCode snippets that trigger only in double quote
I want to create a small VSCode plugin that has autocomplete function for the Bootstrap classes.
I would like this autocomplete to work only when the cursor is between double quotation marks.
Is it ...