emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
slipset 2021-02-18T12:04:11.076Z

So peeps on emacs and macos. How have you configured `Super` ? I realize that I now reveal myself as a total emacs n00b.

2021-02-18T12:11:00.077500Z

For us Norwegians, I think it’s difficult to have Super work alongside regular editing. I myself use evil-mode and other bindings to achieve the things that Super is usually used for

2021-02-18T12:11:43.078200Z

I rebind caps-lock to esc, but that could have been used for super instead I guess

slipset 2021-02-18T12:19:55.079Z

I’m on a us keyboard, and my caps is control. I guess I could map it to right-shift?

2021-02-18T12:22:14.080600Z

I tried that for a while; thinking I didn’t use it that much, but I apparently use it a lot! So it wasn’t a good option for me, but it may be different for you

2021-02-18T15:12:03.080800Z

thanks 😄

vemv 2021-02-18T16:10:19.081Z

I have a little setup that always folds the ns form by default For the rest of the form personally I never use folding. IMO the need can reveal other issues (e.g. ns size)

vemv 2021-02-18T16:14:29.081200Z

what emacs are you on? GUI or terminal? I use GUI emacs, have three modifiers:

(when (eq system-type 'darwin)
  (setq mac-control-modifier 'super)
  (setq mac-option-modifier 'meta)
  (setq mac-command-modifier 'control))
(you might need to assign different values - IIRC my assignments are non-standard)

Bret Horne 2021-02-18T18:05:09.081500Z

I use a qmk board

2021-02-18T20:07:50.084200Z

I have a few colleagues that have 10,000 line python files per project. I find it useful for those and also for perusing lengthier codebases

vemv 2021-02-18T20:19:10.084400Z

sure, I don't question code-folding :) I simply reflected my views for greenfield clojure development

1👍
vemv 2021-02-18T20:19:44.084600Z

curious, does emacs handle a 10kLOC file gracefully? I'd imagine the AST parsing could slow down things

2021-02-18T20:56:56.084800Z

no problems so far

2021-02-18T20:57:17.085Z

perhaps it has more to do with the RAM on the box

2021-02-18T23:51:56.085300Z

Woaw! Thanks for sharing, I love hs-minor-mode :)

1🤘