deprecated
deprecated

Reputation: 5242

Remove Yasnippet from the menu bar

How to remove the YASnippet category from the Emacs menu bar?

Upvotes: 1

Views: 150

Answers (2)

Tony
Tony

Reputation: 398

Add these line after loading Yasnippet

(setq yas-use-menu nil)
(yas-reload-all)

Upvotes: 1

juanleon
juanleon

Reputation: 9390

M-x customize-variable RET yas-use-menu

A value of nil should do the job

Upvotes: 2

Related Questions