Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable Emacs messages like "You can run the command X with Y"

When I run a command that prompts for input in the minibuffer, it's annoying to have the text overwritten by supposedly helpful messages like:

You can run the command 'package-list-packages' with <menu bar> <options> <packages>

Is there a way to disable these specifically for menu bar suggestions, which I never use? If not, how can I disable them globally?

like image 927
Karl Avatar asked Nov 05 '13 03:11

Karl


1 Answers

Set variable suggest-key-bindings to nil.

(setq suggest-key-bindings nil)
like image 178
mike3996 Avatar answered Oct 24 '22 15:10

mike3996