Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tumashu/posframe
Pop a posframe (just a child-frame) at point, posframe is a **GNU ELPA** package!
https://github.com/tumashu/posframe
Last synced: 26 days ago
JSON representation
Pop a posframe (just a child-frame) at point, posframe is a **GNU ELPA** package!
- Host: GitHub
- URL: https://github.com/tumashu/posframe
- Owner: tumashu
- Created: 2018-01-26T00:16:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-05T23:40:38.000Z (10 months ago)
- Last Synced: 2024-04-06T00:28:50.771Z (10 months ago)
- Language: Emacs Lisp
- Homepage:
- Size: 493 KB
- Stars: 414
- Watchers: 13
- Forks: 55
- Open Issues: 12
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
# Created 2021-06-01 Tue 10:41
#+TITLE: Pop a posframe (just a frame) at point
#+AUTHOR: Feng Shu* What is posframe?
Posframe can pop up a frame at point, this *posframe* is a
child-frame connected to its root window's buffer.The main advantages are:
1. It is fast enough for daily usage :-)
2. It works well with CJK languages.NOTE:
1. For MacOS users, posframe needs Emacs version >= 26.0.91
2. GNOME users with GTK3 builds need Emacs 27 or later.
See variable `posframe-gtk-resize-child-frames'
which auto-detects this configuration.More details:
1. [[https://git.savannah.gnu.org/cgit/emacs.git/commit/?h=emacs-27&id=c49d379f17bcb0ce82604def2eaa04bda00bd5ec][Fix some problems with moving and resizing child frames]]
2. [[https://lists.gnu.org/archive/html/emacs-devel/2020-01/msg00343.html][Emacs's set-frame-size can not work well with gnome-shell?]][[file:./snapshots/posframe-1.png]]
* Installation
#+begin_example
(require 'posframe)
#+end_example* Usage
** Create a posframe
*** Simple way
#+begin_example
(when (posframe-workable-p)
(posframe-show " *my-posframe-buffer*"
:string "This is a test"
:position (point)))
#+end_example*** Advanced way
#+begin_example
(defvar my-posframe-buffer " *my-posframe-buffer*")(with-current-buffer (get-buffer-create my-posframe-buffer)
(erase-buffer)
(insert "Hello world"))(when (posframe-workable-p)
(posframe-show my-posframe-buffer
:position (point)))
#+end_example*** Arguments
#+begin_example
C-h f posframe-show
#+end_example** Hide a posframe
#+begin_example
(posframe-hide " *my-posframe-buffer*")
#+end_example** Hide all posframes
#+begin_example
M-x posframe-hide-all
#+end_example** Delete a posframe
1. Delete posframe and its buffer
#+begin_example
(posframe-delete " *my-posframe-buffer*")
#+end_example
2. Only delete the frame
#+begin_example
(posframe-delete-frame " *my-posframe-buffer*")
#+end_example
** Delete all posframes
#+begin_example
M-x posframe-delete-all
#+end_exampleNote: this command will delete all posframe buffers.
You probably shouldn't use it if you are sharing a buffer
between posframe and other packages.** posframe-arghandler
posframe-arghandler feature has been removed from posframe-1.1,
user can use advice feature instead.** Mouse banish
Default setting will work well in most case, but for EXWM user,
suggest use the below config.#+begin_src emacs-lisp
(setq posframe-mouse-banish-function #'posframe-mouse-banish-simple)
#+end_src