Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sarcasm/popup-frame
Emacs "popup frame" management.
https://github.com/sarcasm/popup-frame
Last synced: about 2 months ago
JSON representation
Emacs "popup frame" management.
- Host: GitHub
- URL: https://github.com/sarcasm/popup-frame
- Owner: Sarcasm
- Created: 2011-11-05T14:15:17.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-11-05T14:15:49.000Z (about 13 years ago)
- Last Synced: 2023-03-11T08:56:02.692Z (almost 2 years ago)
- Language: Emacs Lisp
- Homepage:
- Size: 84 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Popup frame management
======================This file aimed to provide some utility functions for the management
of popup frames. A popup frame is a 'X Window' with no decoration (no
titlebar, not in the taskbar) that can be considered as a subwindow
for Emacs. It can be useful for example to create a temporary
completion UI.Currently it works only in a the X `window-system`. Contributions are
welcome mainly for the `'ns` and `'w32` window systems.Usage example
-------------~~~~~ lisp
(let ((the-frame (popup-frame-create)))
(popup-frame-show the-frame)
(set-frame-position the-frame 200 200)
(set-frame-size the-frame 80 24)
(popup-frame-hide the-frame)
(popup-frame-destroy the-frame))
~~~~~