Friedrich Delgado
Friedrich Delgado
Hi! I love being able to edit textareas in emacs, thanks for your work! I mishandled my keyboard focus yesterday and meant to search something in a shell history with...
We import a (non-official) dictionary from a corporate security advisory service provider, which contains some generic cpes that just have vendor, product or version set. (No idea for what internal...
Not sure if this is a bug or a feature request. (Test page: Sorry, not a public project. I'd have to see if I can come up with a minimal...
So in https://emacs-lsp.github.io/lsp-mode/page/installation/#vanilla-emacs it's explained to do the following ~~~elisp ;; if you want to change prefix for lsp-mode keybindings. (setq lsp-keymap-prefix "s-l") ~~~ **if** you want to change the...
pytest supports the `--pdb` and `--pdbcls` switches to launch a debugger if a test assertion fails: ``` --pdb start the interactive Python debugger on errors or KeyboardInterrupt. --pdbcls=modulename:classname start a...
Not sure where to report this and where this bug might happen. If I'm viewing a file which has multiple classes and a split my emacs frame into two side-by-side...
I just upgraded to pytest-django 4.1.0 from 3.10.0 and a lot of my tests broke which rely on admin_client / admin_user. It turns out that the code in https://github.com/pytest-dev/pytest-django/commit/79b7754669660543b593bdad471e73a9dabc04ed uses...
I haven't found this exact issue anywhere, apologies if I missed something. My special use-case is (ab-)using pytest-django for integration tests on a real server (of course not in production)...
#### The problem I'm randomizing primary keys when creating django models, since I had some problems with tests that erroneously relied on primary key values. So I have a function...
The general way to reproduce this is: 1. I have a Django Model with a method 1. I create a factory for that model with `factory.django.DjangoModelFactory` 1. I register a...