Krister

Results 22 comments of Krister

For me the solution buzztaki had for `lsp-doc` works here as well: ```emacs-lisp (defun advise-dimmer-config-change-handler () "Advise to only force process if no predicate is truthy." (let ((ignore (cl-some (lambda...

Since `redis` is just an optional backend it might make sense to have it as an extra: https://python-poetry.org/docs/pyproject#extras Otherwise if you use a later version of `redis` for another package...

Yes, I'm currently trying to reproduce this on a different machine/project.

Okay, I can recreate this the following way (using Flutter): 1. Create a project: ```bash flutter create example ``` 2. Open `lib/main.dart` and import root folder when prompted. 3. Edit...

The renaming happens when `save-buffer` is called but `backup-by-copying` is `nil` (which is vanilla Emacs default). Don't ask me why Emacs does this renaming shenanigans. I'm not sure I understand...

I will just set `backup-by-copying` myself but other vanilla users might run into this issue. Maybe `lsp-mode` could warn if the server supports file renaming but the variable is `nil`?

Not sure if it's of any value to someone else, but I'm also on Ubuntu and installed using `snap`. In order to get things working, I used this configuration: ```elisp...

Ah, interesting. Not sure how this works, but I notice that `(lsp-dart-get-sdk-dir)` resolves to either the correct path or just `"/usr/"` depending on the buffer I evaluate it in ......

Okay, so my bad, I apparently can't read and had not run `lsp-dart-dap-setup`. After that it would still crash, but the reason is that I have multiple devices "connected" as...

Following the suggestion of the deprecation warning, `dart pub global run devtools` also works.