[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/posframe e62e584 15/16: Fix previous merge
From: |
Feng Shu |
Subject: |
[elpa] externals/posframe e62e584 15/16: Fix previous merge |
Date: |
Thu, 21 May 2020 00:57:33 -0400 (EDT) |
branch: externals/posframe
commit e62e5842682e2c0b021f0cbf5a0de25b8e2161e1
Author: Feng Shu <address@hidden>
Commit: Feng Shu <address@hidden>
Fix previous merge
---
README.md | 61 +++++++++++++++++++++++++++++--------------------------------
posframe.el | 8 +++-----
2 files changed, 32 insertions(+), 37 deletions(-)
diff --git a/README.md b/README.md
index fcd8948..a7e78a5 100644
--- a/README.md
+++ b/README.md
@@ -3,26 +3,26 @@ Note: this file is auto converted from posframe.el by
[el2org](https://github.co
# 目录
-1. [Posframe README](#orgb61be23)
- 1. [What is posframe?](#org5080ea1)
- 2. [Installation](#org13757b4)
- 3. [Usage](#orgb6f31c8)
- 1. [Create a posframe](#org0fed3aa)
- 2. [Hide a posframe](#org51f216e)
- 3. [Hide all posframes](#orgd19653c)
- 4. [Delete a posframe](#org665e97b)
- 5. [Delete all posframes](#org8302046)
- 6. [Customizing mouse pointer control](#orgb484be3)
- 7. [Set fallback arguments of posframe-show](#orgfcc0fc2)
- 8. [Some packages which use posframe](#org56e8b88)
-
-
-<a id="orgb61be23"></a>
+1. [Posframe README](#org2ae7aec)
+ 1. [What is posframe?](#orgaff395c)
+ 2. [Installation](#org90b3f22)
+ 3. [Usage](#orgfce7a67)
+ 1. [Create a posframe](#org4d0acfe)
+ 2. [Hide a posframe](#org17e2db2)
+ 3. [Hide all posframes](#org3e00d98)
+ 4. [Delete a posframe](#org69d6930)
+ 5. [Delete all posframes](#org0460351)
+ 6. [Customizing mouse pointer control](#org5706c29)
+ 7. [Set fallback arguments of posframe-show](#orgdf55be7)
+ 8. [Some packages which use posframe](#org51247a5)
+
+
+<a id="org2ae7aec"></a>
# Posframe README
-<a id="org5080ea1"></a>
+<a id="orgaff395c"></a>
## What is posframe?
@@ -37,12 +37,9 @@ The main advantages are:
NOTE:
1. For MacOS users, posframe needs Emacs version >= 26.0.91
-2. GNOME users with GTK3 builds should set \`x-gtk-resize-child-frames'
- to 'resize-mode or 'hide, then run command \`posframe-hack'.
-
- 1. 'resize-mode has better behavior but not future-compatible.
- 2. 'hide is more future-proof but will blink the child frame every
- time it's resized.
+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:
@@ -52,19 +49,19 @@ NOTE:
![img](./snapshots/posframe-1.png)
-<a id="org13757b4"></a>
+<a id="org90b3f22"></a>
## Installation
(require 'posframe)
-<a id="orgb6f31c8"></a>
+<a id="orgfce7a67"></a>
## Usage
-<a id="org0fed3aa"></a>
+<a id="org4d0acfe"></a>
### Create a posframe
@@ -92,21 +89,21 @@ NOTE:
C-h f posframe-show
-<a id="org51f216e"></a>
+<a id="org17e2db2"></a>
### Hide a posframe
(posframe-hide " *my-posframe-buffer*")
-<a id="orgd19653c"></a>
+<a id="org3e00d98"></a>
### Hide all posframes
M-x posframe-hide-all
-<a id="org665e97b"></a>
+<a id="org69d6930"></a>
### Delete a posframe
@@ -118,7 +115,7 @@ NOTE:
(posframe-delete-frame " *my-posframe-buffer*")
-<a id="org8302046"></a>
+<a id="org0460351"></a>
### Delete all posframes
@@ -129,7 +126,7 @@ You probably shouldn't use it if you are sharing a buffer
between posframe and other packages.
-<a id="orgb484be3"></a>
+<a id="org5706c29"></a>
### Customizing mouse pointer control
@@ -140,7 +137,7 @@ To disable this feature, add this to your init.el:
(setq posframe-mouse-banish nil)
-<a id="orgfcc0fc2"></a>
+<a id="orgdf55be7"></a>
### Set fallback arguments of posframe-show
@@ -154,7 +151,7 @@ border-width to 10 and fallback background color to green.
(or (plist-get info arg-name) value)))
-<a id="org56e8b88"></a>
+<a id="org51247a5"></a>
### Some packages which use posframe
diff --git a/posframe.el b/posframe.el
index 36aca37..2608e99 100644
--- a/posframe.el
+++ b/posframe.el
@@ -38,11 +38,9 @@
;; NOTE:
;; 1. For MacOS users, posframe needs Emacs version >= 26.0.91
-;; 2. GNOME users with GTK3 builds should set `x-gtk-resize-child-frames'
-;; to 'resize-mode or 'hide, then run command `posframe-hack'.
-;; 1. 'resize-mode has better behavior but not future-compatible.
-;; 2. 'hide is more future-proof but will blink the child frame every
-;; time it's resized.
+;; 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]]
- [elpa] externals/posframe 05539c1 02/16: Note user when run gnome+gtk3, (continued)
- [elpa] externals/posframe 05539c1 02/16: Note user when run gnome+gtk3, Feng Shu, 2020/05/21
- [elpa] externals/posframe 9cf47ff 01/16: Add information about x-get-resize-child-frames, Feng Shu, 2020/05/21
- [elpa] externals/posframe b71b530 05/16: Simplify posframe--set-frame-size, Feng Shu, 2020/05/21
- [elpa] externals/posframe 095d744 09/16: Add a comment, Feng Shu, 2020/05/21
- [elpa] externals/posframe d058221 06/16: Improve GNOME/GTK3 info, Feng Shu, 2020/05/21
- [elpa] externals/posframe cb1a09e 04/16: Fix width, height, min-width, min-height doc. #58, Feng Shu, 2020/05/21
- [elpa] externals/posframe 102eb8c 07/16: Use posframe-hack, Feng Shu, 2020/05/21
- [elpa] externals/posframe e24413c 12/16: Merge branch 'master' into posframe-gtk-resize-child-frames, Feng Shu, 2020/05/21
- [elpa] externals/posframe 7c173ee 14/16: Update README, Feng Shu, 2020/05/21
- [elpa] externals/posframe 40938a5 13/16: Merge pull request #60 from dgutov/posframe-gtk-resize-child-frames, Feng Shu, 2020/05/21
- [elpa] externals/posframe e62e584 15/16: Fix previous merge,
Feng Shu <=
- [elpa] externals/posframe f864f0f 11/16: Always declare x-gtk-resize-child-frames as special, Feng Shu, 2020/05/21
- [elpa] externals/posframe 093b29a 16/16: posframe-show: Add respect-tab-line argument #61, Feng Shu, 2020/05/21