* Customising menus... removing bars
@ 2014-06-07 19:32 James Freer
2014-06-07 20:56 ` Drew Adams
2014-06-07 21:23 ` Alexander Baier
0 siblings, 2 replies; 4+ messages in thread
From: James Freer @ 2014-06-07 19:32 UTC (permalink / raw)
To: help-gnu-emacs
I'd be grateful for a bit of guidance!
I am just reading about customising menus in emacs. I want to remove the
Buffers, Tools, Lisp-Interpreter, Help - to put it simply. I don't want all the
contents of File, Edit, Options really.
I was thinking of using EasyMenu due to it's name probably the best for me. But
I'm unsure about the main menu - I assume I leave (menu-bar-mode 0) in the
.emacs. I want to use both console and gui, but gui in the most basic form
using key shortcuts for most commands. Console for editing email and when I am
using cli but like the gui when I am looking through a load of files.
thanks
james
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: Customising menus... removing bars
2014-06-07 19:32 Customising menus... removing bars James Freer
@ 2014-06-07 20:56 ` Drew Adams
2014-06-07 21:23 ` Alexander Baier
1 sibling, 0 replies; 4+ messages in thread
From: Drew Adams @ 2014-06-07 20:56 UTC (permalink / raw)
To: James Freer, help-gnu-emacs
> I want to remove the Buffers, Tools, Lisp-Interpreter, Help - to put it simply.
In your init file:
(define-key global-map [menu-bar buffer] nil)
(define-key global-map [menu-bar tools] nil)
(define-key global-map [menu-bar help-menu] nil)
Lisp-Interpreter is mode-specific. Find the major mode that uses it and
then remove it from that major-mode's keymap (instead of `global-map', as
above).
> I don't want all the contents of File, Edit, Options really.
Look in file `menu-bar.el', find which menu items you want to remove, and set
those command bindings to nil.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Customising menus... removing bars
2014-06-07 19:32 Customising menus... removing bars James Freer
2014-06-07 20:56 ` Drew Adams
@ 2014-06-07 21:23 ` Alexander Baier
2014-06-07 21:46 ` James Freer
1 sibling, 1 reply; 4+ messages in thread
From: Alexander Baier @ 2014-06-07 21:23 UTC (permalink / raw)
To: James Freer; +Cc: help-gnu-emacs
On 2014-06-07 21:32 James Freer wrote:
> I'd be grateful for a bit of guidance!
>
> I am just reading about customising menus in emacs. I want to remove
> the Buffers, Tools, Lisp-Interpreter, Help - to put it simply. I don't
> want all the contents of File, Edit, Options really.
>
> I was thinking of using EasyMenu due to it's name probably the best
> for me. But I'm unsure about the main menu - I assume I leave
> (menu-bar-mode 0) in the .emacs. I want to use both console and gui,
> but gui in the most basic form using key shortcuts for most
> commands. Console for editing email and when I am using cli but like
> the gui when I am looking through a load of files.
Just as a site note: You can always bind the toggling of the menu to a
key enabling you to only make it visible when you need it.
#+BEGIN_SRC emacs-lisp
(global-set-key (kbd "C-<f10>") 'menu-bar-mode)
#+END_SRC
HTH,
--
Alexander Baier
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Customising menus... removing bars
2014-06-07 21:23 ` Alexander Baier
@ 2014-06-07 21:46 ` James Freer
0 siblings, 0 replies; 4+ messages in thread
From: James Freer @ 2014-06-07 21:46 UTC (permalink / raw)
To: James Freer, help-gnu-emacs
On Sat, 7 Jun 2014, Alexander Baier wrote:
> On 2014-06-07 21:32 James Freer wrote:
>> I'd be grateful for a bit of guidance!
>>
>> I am just reading about customising menus in emacs. I want to remove
>> the Buffers, Tools, Lisp-Interpreter, Help - to put it simply. I don't
>> want all the contents of File, Edit, Options really.
>>
>> I was thinking of using EasyMenu due to it's name probably the best
>> for me. But I'm unsure about the main menu - I assume I leave
>> (menu-bar-mode 0) in the .emacs. I want to use both console and gui,
>> but gui in the most basic form using key shortcuts for most
>> commands. Console for editing email and when I am using cli but like
>> the gui when I am looking through a load of files.
>
> Just as a site note: You can always bind the toggling of the menu to a
> key enabling you to only make it visible when you need it.
>
> #+BEGIN_SRC emacs-lisp
> (global-set-key (kbd "C-<f10>") 'menu-bar-mode)
> #+END_SRC
>
> HTH,
> --
> Alexander Baier
Alexander and Drew
Many thanks for you replies I will read further and investigate. I like emacs,
but it's 'big' and takes some learning.
james
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-06-07 21:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-07 19:32 Customising menus... removing bars James Freer
2014-06-07 20:56 ` Drew Adams
2014-06-07 21:23 ` Alexander Baier
2014-06-07 21:46 ` James Freer
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).