>Programming resources for Emacs Lisp, Common Lisp, Scheme and Clojure: pastebin.com/nyTQp7qi (embed) >Troubleshooting If there seems to be a bug (or complicated issue), anons may ask you to compose an MWE (minimum working example). To create an MWE, try the following: 1) start emacs with "emacs -q". This disables your init. 2) try to reproduce your issue with as few settings changed and packages (manually) loaded as possible. These steps ensure that other anons can replicate your problem if it's something more involved. Sometimes you even find the cause yourself this way, too!
You're assuming the editor won't be a part of the system just like the shell. >probably with Guix and the Gash shell Barely used Guix but generally Scheme implementations wouldn't be much of an improvement because they suck at runtime dynamism.
Jace Evans
>redditor doesnt know how to start a general
Charles Diaz
Is there a way to return early from a Scheme function?
Kayden Ross
Signal and catch an error. Disclaimer: not a schemer
Ian Brown
too much bloat I guess I'll just use some conds
Nathaniel Powell
I've been on Any Forums for over a decade and I still don't know how it works.
Daniel Powell
Its using AucTeX's fold feature. I don't really remember how Doom works but its under the +fold feature.
I looked through the Doom module source and wow, now I remember why I have Doom Emacs.
Gavin James
>have hate
Jonathan Phillips
For anyone who likes the idea of the tab-bar, but thinks it is ugly and/or takes up too much space. (defvar tab-bar-popup-timer nil "The current timer used by `tab-bar-popup'.")
(defun tab-bar-popup (&optional time) "Display tab-bar for TIME seconds before hiding it again. Defaults to 1 second unless called with a prefix argument." (interactive "p") (when tab-bar-popup-timer (cancel-timer tab-bar-popup-timer)) (customize-set-variable 'tab-bar-show t) (setq tab-bar-popup-timer (run-with-timer (or time 1) nil #'customize-set-variable 'tab-bar-show nil)))