You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be much easier and less error-prone if we use let* instead of let. let* allows to use the variable defined before the current line. For example:
That sounds like a good and inexpensive improvement 😄
Unfortunately I'm not really familiar with Lisp at all so I'll need to check and test if there might be problems when it comes to the special Emacs Lisp syntax derivations.
Maybe someone with more experience post some feedback or some examples/links if it is used in other popular themes too without any disadvantages.
https://github.com/arcticicestudio/nord-emacs/blob/d828752e270978a56bde19986c98b1bbe8f51386/nord-theme.el#L101
It would be much easier and less error-prone if we use
let*
instead oflet
.let*
allows to use the variable defined before the current line. For example:The text was updated successfully, but these errors were encountered: