I have gotten user snippets in VSCode to work for C and C++, but for some reason VSCode is not providing snippet suggestions for .md
and .tex
files.
Here is a minimal example of tex.json
(that doesn't work):
{
"dummy": {
"prefix": "dummy",
"body": [
"some random text for demonstration"
],
"description": "A dummy snippet"
}
}
VSCode provides suggestions in .md
and .tex
files, just not user snippets. How do I fix this issue or employ some other way to use user snippets for Markdown and Latex?
Update: Snippets are now working in .md
files, thanks to the comment by @Mark. I need to type the prefix and press Ctrl + Space
. This solution does not, however, work for Latex.