emacs

borkdude 2025-06-17T14:47:42.957199Z

@bozhidar thank you: https://emacsredux.com/blog/2023/03/14/avoid-accidentally-minimizing-emacs/

πŸ™‡ 1
2
Ed 2025-06-18T13:50:39.808279Z

When I switched to dvorak (for rsi reasons) it made M-x more awkward to type so I've had (global-set-key (kbd "C-z") 'execute-extended-command) in my emacs setup for a loooong time. I also have C-x C-c bound to a prefix - if I actually want to quit emacs (for some unknown reason) then I'll just run C-z kill-emacs ...

tatut 2025-06-19T03:59:22.616289Z

having C-z as prefix is a neat idea, but macbook keyboard is pretty crowded in the bottom left corner already

tatut 2025-06-19T04:00:03.336189Z

I use C-Γ₯ as prefix for my own stuff, because that is in all the finnish keyboards, but Γ₯ or is basically unused in the finnish language

borkdude 2025-11-22T12:13:04.564909Z

GRRRRR - it happened to me again, although I've set: (global-unset-key (kbd "C-z"))

borkdude 2025-11-22T12:13:10.329809Z

so annoying

borkdude 2025-11-22T12:13:30.886119Z

I'll go with @tatut’s function

πŸ‘ 1
borkdude 2025-06-17T14:48:42.620449Z

I accidentally hit C-z when trying to hit M-x sometimes. And apparently suspend-frame makes my emacs freeze with that annoying colored macos ball

bozhidar 2025-06-17T14:49:24.911889Z

Yeah, that’s one most unfortunate keybinding for us Clojure hackers. πŸ˜„

bozhidar 2025-06-17T14:50:11.610829Z

In the past I often minimized my Emacs when I actually wanted to switch to/back from the REPL in CIDER.

1
vemv 2025-06-17T15:19:31.761509Z

I recently got to enforce Rubocop at work, so here's another thank you!

1
Samuel Ludwig 2025-06-17T15:44:31.330869Z

I really learned to love modifier-keys-everywhere after setting up sunaku's Engrammer key-layout, where all the modifiers are right on my home-row, I think it makes emacs etc. so much friendlier to use on the joints

tatut 2025-06-18T03:54:54.364839Z

I have for years had this:

(defun tt-dont-suspend-emacs ()
  (interactive)
  (message "Not suspending emacs"))
(global-set-key (kbd "C-z") 'tt-dont-suspend-emacs)
(global-set-key (kbd "C-x C-z") 'tt-dont-suspend-emacs)
after having so many times accidentally done exactly this

ag 2025-06-17T21:04:40.858769Z

In case you folks missed it. John Wiegley (in cooperation with Karthink) just released https://github.com/jwiegley/ob-gptel. So, if you already using gptel, this could be a nice addition. Also, don't quote me, but I've heard them experimenting on some Eshell extension that would let you pipe things in and out of gptel.

πŸ‘ 1
πŸš€ 3