Suppose I have some code:
class Foo {
bar() {
doStuff()
}
}
When I copy some fragment from it, say:
I'd like the content to be dedented. So instead of this:
- list
- sublist
```
bar() {
doStuff()
}
```
I'd like to see this:
- list
- sublist
```
bar() {
doStuff()
}
```