Friedrich Delgado

Results 33 comments of Friedrich Delgado

Saving the buffer this way is a good idea. Also focusing on chrome. (A bit different for me on linux.) That's a good workaround, thanks!

For the record: here's my take ```elisp ;; from https://github.com/alpha22jp/atomic-chrome/issues/34#issuecomment-368374363 (defun fdf/atomic-edit-done () (kill-new (buffer-string) t) (when (eq system-type 'gnu/linux) (shell-command "xdotool search browser windowraise windowactivate"))) (add-hook 'atomic-chrome-edit-done-hook #'fdf/atomic-edit-done) ```...

> @TauPan @agzam I agree, this should be fixed, because it's a serious enough issue that it could cause new users to quit—speaking for myself, someone who never rage quits,...

(Also I'm not sure if the wfn for just the legacy edition is correct. I'm trying to make sense of NISTIR 7695 if the ANY values in the wfn string...

Hm, interesting. Thanks @galindale for pointing out how the reference implementation works. However I see in Section 5.2 (WFN Attributes): ```Each permitted attribute MAY be used at most once in...

> Seems to me that the only thing needed is to set lsp-keymap-prefix before loading lsp-mode instead of the other way around. > > ``` > (setq lsp-keymap-prefix "C-c l")...

> Thanks @richcarl, setting the variable before the package is loaded did the trick for me. > > @TauPan have you tried adding the setq on the `use-package` `:init` section?...

Hm, I recently updated my distribution from openSUSE 15.2 to 15.3 and I have a more recent emacs now (28.1 instead of, I think, 27.x) and this inded works now:...

I'm talking about this teardown: https://github.com/pytest-dev/pytest-django/blob/master/pytest_django/fixtures.py#L186 which will call `flush` e.g. here https://github.com/django/django/blob/main/django/test/testcases.py#L1057

I forgot to mention that the `apiclient` from django-rest-framework also has a method `force_authenticate` which doesn't behave like that, so it might be worth looking at their implementation.