RosanneZe
RosanneZe
I think it might be because of the reformatter package, which is required by python-black. I uninstalled both python-black and reformatter, and my trailing white space removal worked again. When...
This is my configuration: ```lisp (use-package jedi :ensure t) (use-package python-mode :ensure t :init :custom (py-trailing-whitespace-smart-delete-p t) :config (add-hook 'python-mode-hook (lambda () (set (make-local-variable 'comment-inline-offset) 2))) (add-hook 'python-mode-hook 'jedi:setup) (setq...
Good idea! With reformatter installed and python-black uninstalled, trailing whitespace gets removed on save.
This is my output: ``` before-save-hook is a variable defined in ‘files.el’. Its value is (delete-trailing-whitespace t) Original value was nil Local in buffer toegang.py; global value is (py-isort-before-save) ```...
It probably is some weird interaction between python-mode and python-black. I managed to fix it by removing the smart delete setting from python-mode and adding a before-save hook for deleting...
I'm really sad that this happened. I was using this a lot to initialize nested fields. Is there really no work around to get this to work again? edited to...
This solution works most of the time, but it doesn't propagate the context. Here's a solution @Kareeeeem and I came up with: ```python class A(Schema): x = fields.String(missing='x') y =...
In the end we had to go with a different workaround than the one above, I forgot why exactly. The most practical thing was just to create our own Nested...
Thanks for looking into it! 1. Version 10.0.19042 Build 19042 2. `en-us;English (United States)` (both System and Input) 3. I started from a clean slate to check if the problem...
I started with the simple config file and then added in my settings one by one. The setting that crashes everything is `layout = vertical`. If I don't use that...