Andreas Raster

Results 20 comments of Andreas Raster

Thanks for your suggestion, I'll keep that in mind and look into it once I have upgraded to Emacs 27.

Still have not done that. But it is on my mind, maybe I'll have time around christmas to do some overdue emacs maintenance stuff.

Thanks for the PR. I am going to to just merge it and see what happens. Feel free to just make another one if you want to add more changes.

How is your tll set up? Did you add `compilation-mode` to `too-long-lines-special-buffer-modes`? What emacs version are you using? tll will call `too-long-lines-hide` after every change, which I assume will make...

Interesting that you are still on Emacs 24, maybe consider trying if your problem goes away when you update to Emacs 25?

I had the same problem, got it to work by first uninstalling torch, torchvision and torchaudio, then installing with torch==1.13.1+cu117: ``` pip uninstall torch torchvision torchaudio pip install torch==1.13.1+cu117 torchvision...

Same problem here, solved it with this change: ``` (defun copilot-turn-on-unless-buffer-read-only () "Turn on `copilot-mode' if the buffer is writable." (unless (or buffer-read-only (not (buffer-file-name (current-buffer)))) (copilot-mode 1))) ``` I...

I've tried explicitly setting the shell to bash, tried using `(format "%s" helm-pattern)`, but neither helped. I'll revert to emacs 28.2 for the time being since it works as expected...

Maybe, all I did was install the plugin, and click on the hello-world example and tried to run it. Groovy failed, but Kotlin worked fine and in the end I...

When I load either the kotlin or groovy hello-world the encoding starts out as UTF-8, kotlin works, groovy fails. When I convert the encoding of the groovy hello-world to US-ASCII...