Jon Potter
Jon Potter
[Fluent Pages](https://github.com/edoburu/django-fluent-pages)
I could be wrong but for me it seems like Django 2.0's `extend` tag works like overextends out of the box. So you probably don't need overextends at all! I...
I worked around this by reverting the default `objects` manager to `models.Manager` and attaching `PolymorphicManager` separately under the name `polymorphic`. In this configuration `Animal.objects.all()` gives a non-polymorphic queryset and if...
I agree, monkey patching should definitely be opt-in. The pre_delete signal handler @vinnyrose posted has been working well for us in production so far.
I've run into this problem also, and I came up with the same workaround that you mention. It's been working for me. It would be nice if you could fix...
The only type of ordering you couldn't do is having pages in multiple menus but in different orders in each menu. In my experience if pages appear in multiple menus...
No that's not possible with this extension, sorry.
I'm glad you're liking the extension! It's not currently possible to customize the shape (without forking the extension). That's a feature I'll consider adding. Thanks for the suggestion!
Thanks for the suggestion! I know this is something that is fairly common in Vim, but unfortunately I don't think there's a good way to implement this in a VSCode...
This is by design (see [README](https://github.com/jpotterm/vscode-simple-vim/blob/master/README.md)). Granted the design is debatable, but that's a much larger discussion. Use `rr` for deleting and yanking simultaneously (like Vim's `dd`).