Skip to content

Instantly share code, notes, and snippets.

@lagagain
Last active April 11, 2019 02:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lagagain/86633c50720fbbc7b1c61ad6b7c548ec to your computer and use it in GitHub Desktop.
Save lagagain/86633c50720fbbc7b1c61ad6b7c548ec to your computer and use it in GitHub Desktop.
[Emacs Lisp]Example of x-popup-menu
(easy-menu-define testmenu nil "Test Menu" '(("Hello") ("abc") ("def")))
(windowp
(get-buffer-window "*Messages*"))
(x-popup-menu `((0 0) ,(get-buffer-window "*Messages*")) testmenu)
(x-popup-menu `((0 0) ,(get-buffer-window)) testmenu)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment