For the sake of tidiness, I'd like to group setq(s) under single, related banner. Let's say I want to set the value of compilation-scroll-output in "compilation" unit like this:
(use-package compilation
:init
(progn
(setq compilation-scroll-output t)))
All I get is:
Could not load compilation
How is it?
describe-variable
ordescribe-function
to find out which package a var or func is in, then look down at theprovide
call to find out the package name. – Jordon Biondo Sep 09 '15 at 19:56compilation-scroll-output
is a noop, it should be(progn (setq compilation-scroll-output t))
– npostavs Sep 09 '15 at 20:41