* early-init and tool-bar-mode question
@ 2019-02-21 1:40 Ergus
2019-02-21 3:19 ` Stefan Monnier
0 siblings, 1 reply; 2+ messages in thread
From: Ergus @ 2019-02-21 1:40 UTC (permalink / raw)
To: help-gnu-emacs
Hi:
I am trying to test the actual master branch new features and I have
a question about the early-init.el usage.
I can see that it is possible to set:
(setq electric-indent-mode nil)
(setq menu-bar-mode nil)
(setq tool-bar-mode nil)
(setq scroll-bar-mode nil)
(setq tooltip-mode nil)
In order to set this before the configuration is done. (Like a
substitution for custom file)
The expected behavior should be that for example the tool-bar will
be not shown. Or the others.
Apparently if I set this in this way, the tool-bar is always shown in
terminal-mode, but in the graphical version it is not.
So could you please tell me what is missing here?
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: early-init and tool-bar-mode question
2019-02-21 1:40 early-init and tool-bar-mode question Ergus
@ 2019-02-21 3:19 ` Stefan Monnier
0 siblings, 0 replies; 2+ messages in thread
From: Stefan Monnier @ 2019-02-21 3:19 UTC (permalink / raw)
To: help-gnu-emacs
> (setq electric-indent-mode nil)
> (setq menu-bar-mode nil)
> (setq tool-bar-mode nil)
> (setq scroll-bar-mode nil)
> (setq tooltip-mode nil)
These are all minor modes, so to disable them you want to *call* them.
Just setting the var is likely not to be quite good enough (tho it will
sometimes work, admittedly):
(electric-indent-mode -1)
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(tooltip-mode -1)
> Apparently if I set this in this way, the tool-bar is always shown in
> terminal-mode, but in the graphical version it is not.
I've never seen the tool bar in terminal mode, so your description
sounds very strange.
Stefan
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-02-21 3:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-21 1:40 early-init and tool-bar-mode question Ergus
2019-02-21 3:19 ` Stefan Monnier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).