I intend to change certain features/functions in Emacs. I was wondering whether there is any feature in Emacs to popup a windows to show a warning message? Also, I would appreciate any alternative ideas if this feature is not available.
Cheers all.
I intend to change certain features/functions in Emacs. I was wondering whether there is any feature in Emacs to popup a windows to show a warning message? Also, I would appreciate any alternative ideas if this feature is not available.
Cheers all.
(message-box "World's on fire")
You might also want to M-x apropos RET ^x-
to find out about other GUI features emacs supports.
If you want something more sophisticated, you have to use/write separte programs.
Emacs GUI support is limited, but it interacts quite well with other processes.
You might want to look at the following. These are the popups that autocomplete uses.
© 2022 - 2024 — McMap. All rights reserved.
message
, which also appends it to the*Messages*
buffer), or usewarn
/display-warning
which append to and pop up the*Warnings*
buffer. You might also be able to do what you want using D-Bus, but let's wait for other answers to come in – maybe what you're asking for is possibe after all. – TrevarM-: (info "(dbus)")
. There are also some blog posts in the first hits for "emacs dbus". – Trevar