diff options
| author | gcv <gepardcv@gmail.com> | 2022-04-11 22:36:39 -0700 |
|---|---|---|
| committer | gcv <gepardcv@gmail.com> | 2022-04-11 22:36:39 -0700 |
| commit | 663497f8585df892cf1a505d19d7b28b503b6531 (patch) | |
| tree | 147b8029e564774a5232319a7c01ef9b8687e5b8 | |
| parent | 0b4634e7087d5ba854e6b85c86b19c0b882b9f90 (diff) | |
Update documentation for persp-add-buffer-to-frame-global.
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | README.md | 9 |
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b9894c..d937ea3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added +- `persp-add-buffer-to-frame-global`: support for special frame-specific "global" perspectives; buffers which they contain will appear in Perspective-aware buffer listings in _all_ perspectives in their containing frames - `persp-switch-to-scratch-buffer`: interactive function to switch to the current perspective's scratch buffer, creating one if missing. - `persp-forget-buffer`: disassociate buffer with perspective without the risk of killing it. This balances `persp-add-buffer`. Newly created buffers via `get-buffer-create` are rogue buffers not found in any perspective, this function allows to get back to that state. - Support for using Consult's `consult-buffer` as a Perspective-aware buffer switcher. @@ -217,6 +217,7 @@ The actual command keys (the ones pressed after the prefix) are defined in - `p`, `<left>` — `persp-prev`: Switch to previous perspective - `m` — `persp-merge`: Temporarily merge the buffers from one perspective into another - `u` — `persp-unmerge`: Undo the effects of a `persp-merge` +- `g` — `persp-add-buffer-to-frame-global`: Add buffer to a frame-specific "global" perspective - `C-s` — `persp-state-save`: Save all perspectives in all frames to a file - `C-l` — `persp-state-load`: Load all perspectives from a file @@ -226,8 +227,12 @@ The actual command keys (the ones pressed after the prefix) are defined in Since Perspective maintains distinct buffer lists for each perspective, it helps to use a Perspective-aware buffer switcher. -When using one of the following buffer switchers you will only be prompted for -buffers in the current perspective and the frame global perspective. +When using one of the following buffer switchers, you will only be prompted for +buffers in the current perspective and the frame-specific "global" shared +perspective. (The `persp-add-buffer-to-frame-global` command adds a buffer to +this special frame-specific perspective, whose name is determined by +`persp-frame-global-perspective-name` and defaults to `GLOBAL`.) + **Ido**: [Interactive Do (Ido, `ido-mode`)](https://www.gnu.org/software/emacs/manual/html_node/ido/index.html), |
