Is there a way to get VS Code to support folding blocks within Pug when used in Vue single-file components? That is:
<template lang="pug"
...
</template>
Based on this bug report the fact VS Code isn't doing this already seems to be do with using Vetur.
Adding this to settings.json fixed it:
"[vue]": {
"editor.foldingStrategy": "indentation",
}