This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-03-08
Channels
- # announcements (6)
- # atom-editor (1)
- # babashka (21)
- # beginners (70)
- # clerk (4)
- # clj-kondo (71)
- # clj-yaml (1)
- # clojure (54)
- # clojure-art (1)
- # clojure-denmark (1)
- # clojure-dev (1)
- # clojure-doc (1)
- # clojure-europe (31)
- # clojure-nl (1)
- # clojure-norway (41)
- # clojure-uk (15)
- # clojurescript (36)
- # conjure (1)
- # cursive (2)
- # datomic (14)
- # duct (10)
- # emacs (12)
- # etaoin (176)
- # gratitude (25)
- # hyperfiddle (17)
- # jobs (1)
- # juxt (5)
- # london-clojurians (1)
- # malli (3)
- # nbb (21)
- # off-topic (29)
- # reitit (12)
- # releases (2)
- # remote-jobs (7)
- # shadow-cljs (9)
- # testing (9)
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.
I haven't seen anything like that lately! Doom Emacs, Emacs 28.2 and Manjaro Linux here.
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.
I'm not sure! I'd probably ask on the Doom Emacs discord -- there's some very knowledgeable Emacs people hanging around there.
yeah, I guess I should do that. Thanks
@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
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.
Yeah I am on mac but not using native-comp.
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!
set the cursor on a thing and run describe-char. See what text properties attached, what faces get used
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