Fork me on GitHub
#emacs
<
2023-03-08
>
diego.videco15:03:11

Just today without any updates or changes on my config emacs started crashing on me. Has anyone experienced something similar? I am using emacs doom on macos. Specifically, it crashes when I try to save.

teodorlu15:03:04

I haven't seen anything like that lately! Doom Emacs, Emacs 28.2 and Manjaro Linux here.

diego.videco15:03:00

Seems like it only happens on a specific file. Could it be a corruption on the file or with it’s location on the ssd? Although it doesn’t happen every time I save.

teodorlu15:03:24

I'm not sure! I'd probably ask on the Doom Emacs discord -- there's some very knowledgeable Emacs people hanging around there.

diego.videco15:03:06

yeah, I guess I should do that. Thanks

ag21:03:28

@U7AMPCPU2 are you on a Mac? Are you using native-comp? I find native-comp insanely unstable on Mac. After many months of struggle, I finally started building Emacs without the native-comp support and it's much more stable. Even though it supposedly should be slower, I have not noticed the alleged lag. Ironically, with native-comp my workflow slows down significantly, because native-comp constantly has to compile something

hifumi12307:03:11

IME native-comp is super stable on Intel Macs. I occasionally get crashes on ARM Macs but that is when I have dozens of packages loaded and its hard to reproduce the crashes. They happen once in a few days, but not often enough that it annoys me. Ironically, ARM Macbooks are the only computers I've had Emacs ever crash on.

diego.videco15:03:45

Yeah I am on mac but not using native-comp.

dsp17:03:12

Hi folks. Bit of a specific question for you. I am using rainbow-identifiers, rainbow-delimeters, color-identifiers, and writing clojure with doom emacs. It seems that namespaced functions have different faces than what I'm aiming for, and I am not sure where to begin to look for turning this off. Any pointers greatly appreciated!

ag21:03:06

set the cursor on a thing and run describe-char. See what text properties attached, what faces get used

dsp22:03:18

thanks! likely related to font-lock in clojure mode, will have a look now.

dsp05:03:46

font-lock-type-face needed to be added to rainbow-identifiers-faces-to-override, seems I picked that up from spacemacs: https://github.com/syl20bnr/spacemacs/blob/3512e43c9e6efef78b5104785c99518eff60d668/layers/%2Bthemes/colors/packages.el#L95 cheers for the help, works as expected now