This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-11-03
Channels
- # announcements (17)
- # asami (17)
- # babashka (20)
- # beginners (110)
- # calva (1)
- # cherry (3)
- # cider (1)
- # clj-kondo (21)
- # clj-on-windows (1)
- # cljsrn (5)
- # clojure (142)
- # clojure-austin (1)
- # clojure-europe (72)
- # clojure-france (28)
- # clojure-hungary (2)
- # clojure-nl (2)
- # clojure-norway (38)
- # clojure-poland (2)
- # clojure-uk (3)
- # clojurescript (4)
- # cursive (33)
- # data-science (3)
- # datahike (5)
- # datomic (1)
- # emacs (27)
- # events (3)
- # fulcro (15)
- # graalvm (4)
- # gratitude (2)
- # honeysql (7)
- # humbleui (8)
- # introduce-yourself (11)
- # jobs-discuss (9)
- # lambdaisland (3)
- # lsp (18)
- # malli (62)
- # music (1)
- # nbb (3)
- # off-topic (10)
- # pathom (3)
- # pedestal (6)
- # polylith (5)
- # re-frame (7)
- # releases (2)
- # shadow-cljs (33)
- # sql (1)
- # test-check (23)
- # vim (20)
- # xtdb (9)
Survey Q: I find that I use sp-wrap-round
allthe_time_ but I have not yet bound it to anything keywise. What do other folks do here? (I’m using doom fwiw)
Nice. Sounds like a couple solid votes for evil-cleverparens (I hadn’t heard of it)
I use it typically by positioning point at the start of the form
> (I’m using doom fwiw) @U0250GGJGAE we had related discussion not too long ago here in #doom-emacs: https://clojurians.slack.com/archives/C01GE5PD249/p1664832575526619
Thanks all! Some good ideas here and things to check out 🙂
Does anyone else runs into problems with “Too many open files” while using lsp on a mac?
how can I know what is it watching?
thank, I’ll try that. What happens if I disable that?
Emacs will not know when a file was changed outside the editor, for example git branch switches
it was a suggestion just to check if the too many open files was related to file watchers
I see. I’ll report back if it happens again
@U7AMPCPU2 next time it happens try running (file-notify-rm-all-watches)
Thanks for the tip @U0G75ARHC
Of course. And if the version of emacs you have doesn't have that function, here it is, you can probably just copy it into your config:
(defun file-notify-rm-all-watches ()
"Remove all existing file notification watches from Emacs."
(interactive)
(maphash
(lambda (key _value)
(file-notify-rm-watch key))
file-notify-descriptors))
thank you