mathstodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance for maths people. We have LaTeX rendering in the web interface!

Server stats:

3K
active users

Dan Drake 🦆

@kickingvegas I've been poking around with your post on modifying the Tools menu --

yummymelon.com/devnull/customi

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.

yummymelon.comCustomizing the Emacs Tools MenuTruth be told, I’ve always found the default Emacs Tools menu to be weird. But that’s really a matter of taste and rather than litigate the default configuration of the Tools menu, let’s talk...

@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!