amethyst
amethyst copied to clipboard
Don't use inline lambdas for hooks
In this bit of code here, you're using an inline quoted lambda for hooks.
The issue with that, is that it tends to be quite hard to introspect the hook variable with describe-variable, usually bound to C-h v, or remove the hook with remove-hook.
Good tip! Thanks!