@kickingvegas I've been poking around with your post on modifying the #emacs Tools menu --
http://yummymelon.com/devnull/customizing-the-emacs-tools-menu.html
You describe how to remove individual entries, but I want to see them all and kill a bunch of them. You could mention using, say:
(describe-keymap menu-bar-tools-menu)
That gives you the entire menu in a Help buffer. Very useful for that initial step of getting rid of a ton of stuff.
@kickingvegas another note: your example of adding Magit Status should likely add a "no error" flag to the call to vc-responsible-backend. As it is, I've been trying tmm-menubar, and that somehow (in many buffers) uses a default directory with no VC backend, and the above function throws an error. You just want it to return nil in that case. So I'd recommend
(easy-menu-add-item global-map '(menu-bar tools)
["Magit Status"
magit-status
:visible (vc-responsible-backend default-directory t)
:help "Show the status of the current Git repository in a buffer"]
"Version Control")
(note the new "t").
@ddrake Thanks for calling this bug on my part out! Yeah, the NO_ERROR arg should be t. Will amend my post accordingly.
@ddrake Amended my post with your two comments - thanks!
@ddrake TIL. Thanks for mentioning it!