2018-09-19 03:54:47 +00:00
|
|
|
#+TITLE: Spacemacs-purpose layer
|
2015-06-04 20:12:17 +00:00
|
|
|
|
2019-05-28 14:41:10 +00:00
|
|
|
#+TAGS: layer|misc|spacemacs
|
2019-05-02 21:49:30 +00:00
|
|
|
|
2019-05-07 20:05:06 +00:00
|
|
|
* Table of Contents :TOC_5_gh:noexport:
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#description][Description]]
|
2017-08-28 21:58:10 +00:00
|
|
|
- [[#features][Features:]]
|
2019-04-21 20:04:25 +00:00
|
|
|
- [[#purposes][Purposes]]
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#switch-to-buffer-and-display-buffer][switch-to-buffer and display-buffer]]
|
|
|
|
- [[#misc][misc]]
|
|
|
|
- [[#install][Install]]
|
|
|
|
- [[#usage][Usage]]
|
2018-12-05 03:03:03 +00:00
|
|
|
- [[#key-bindings][Key bindings]]
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#caveats][Caveats]]
|
|
|
|
- [[#popwin-and-guide-key][Popwin and guide-key]]
|
|
|
|
- [[#packages-that-do-display-management][Packages that do display management]]
|
2015-06-04 20:12:17 +00:00
|
|
|
|
|
|
|
* Description
|
2016-10-28 08:07:10 +00:00
|
|
|
This layer enables [[https://github.com/bmag/emacs-purpose][window-purpose]], which provides an alternative, purpose-based
|
2015-06-04 20:12:17 +00:00
|
|
|
window manager for Emacs. With this layer, your window layout should be robust
|
2019-05-26 20:58:52 +00:00
|
|
|
and shouldn't change too much when opening all sorts of buffers.
|
2015-06-04 20:12:17 +00:00
|
|
|
|
2016-10-28 08:07:10 +00:00
|
|
|
Regular [[https://github.com/m2ym/popwin-el][popwin]] is not triggered when window-purpose is enabled. However,
|
|
|
|
the window-purpose layer provides a =purpose-popwin= extension, which
|
2019-05-26 20:58:52 +00:00
|
|
|
brings popwin's behavior to window-purpose and solves that problem.
|
2015-06-04 20:12:17 +00:00
|
|
|
|
2017-08-28 21:58:10 +00:00
|
|
|
** Features:
|
|
|
|
- Window layout is more robust and less likely to change unintentionally
|
|
|
|
- Dedicate window to a purpose
|
|
|
|
- User-defined purposes
|
|
|
|
- Extensible window display behavior
|
|
|
|
- Empty =purpose-mode-map=, to avoid conflicts with other key maps
|
2017-10-13 13:58:31 +00:00
|
|
|
- Replicate popwin behavior for purpose-mode - almost no regression in popup behavior from using window-purpose.
|
2019-05-26 20:58:52 +00:00
|
|
|
- Reuses popwin's settings: =popwin:special-display-config=, =popwin:popup-window-height= and =popwin:popup-window-width=.
|
2017-08-28 21:58:10 +00:00
|
|
|
- Difference from popwin: when several windows are open, popup window is sometimes bigger than with regular popwin in the same situation.
|
|
|
|
|
2019-04-21 19:00:24 +00:00
|
|
|
* Purposes
|
2017-10-13 13:58:31 +00:00
|
|
|
window-purpose contains a configuration which assigns a purpose for each
|
2016-10-17 00:51:53 +00:00
|
|
|
buffer. Later, when Emacs needs to display a buffer in a window, its purpose
|
|
|
|
helps make a better decision of which window to use.
|
2015-06-04 20:12:17 +00:00
|
|
|
|
|
|
|
For example, consider the following case: Emacs frame shows three windows - one
|
|
|
|
for code, one for a terminal and one general-purpose window. The general window
|
|
|
|
is selected and you want to open a code file. How do you ensure that the code
|
2019-05-26 20:58:52 +00:00
|
|
|
file will be displayed in the code window? With window-purpose you don't
|
2017-10-13 13:58:31 +00:00
|
|
|
need to worry about it - you open the file and window-purpose places it in
|
2018-05-30 19:40:27 +00:00
|
|
|
the correct window.
|
2015-06-04 20:12:17 +00:00
|
|
|
|
|
|
|
Additionally, you can dedicate a window to a purpose - so that window is
|
|
|
|
reserved only for buffers that share that purpose.
|
|
|
|
|
|
|
|
** switch-to-buffer and display-buffer
|
|
|
|
In regular Emacs, =switch-to-buffer= follows different rules than the other
|
2019-05-26 20:58:52 +00:00
|
|
|
switching and popping commands, because it doesn't use =display-buffer= (which
|
2017-10-13 13:58:31 +00:00
|
|
|
the other commands do). With window-purpose, this behavior is fixed. The
|
2016-10-17 00:51:53 +00:00
|
|
|
result is a better control over how buffers are displayed, since
|
2019-05-26 20:58:52 +00:00
|
|
|
=switch-to-buffer= doesn't ignore the user's customizations anymore.
|
2015-06-04 20:12:17 +00:00
|
|
|
|
|
|
|
** misc
|
|
|
|
- specialized helm source similar to =helm-source-buffers-list=
|
|
|
|
|
|
|
|
* Install
|
2016-10-17 00:51:53 +00:00
|
|
|
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
|
2018-05-30 19:40:27 +00:00
|
|
|
add =spacemacs-purpose= to the existing =dotspacemacs-configuration-layers= list in
|
2016-10-17 00:51:53 +00:00
|
|
|
this file.
|
2015-06-04 20:12:17 +00:00
|
|
|
|
|
|
|
* Usage
|
2017-10-13 13:58:31 +00:00
|
|
|
With window-purpose layer installed, =purpose-mode= and =pupo-mode= are enabled.
|
2015-06-04 20:12:17 +00:00
|
|
|
You can toggle =purpose-mode= (~SPC : purpose-mode~) at any time to return to
|
|
|
|
purpose-less behavior. You can toggle =pupo-mode= (~SPC : pupo-mode~) to turn
|
|
|
|
off only the purpose-popwin integration.
|
|
|
|
|
|
|
|
If you change =popwin:special-display-config= in your =dotspacemacs/config=, you
|
|
|
|
should call =pupo/update-purpose-config= to update purpose-popwin with those
|
|
|
|
changes.
|
|
|
|
|
2017-10-13 13:58:31 +00:00
|
|
|
See [[https://github.com/bmag/emacs-purpose/wiki][window-purpose wiki]] to learn more about window-purpose.
|
2015-06-04 20:12:17 +00:00
|
|
|
|
2018-12-05 03:03:03 +00:00
|
|
|
* Key bindings
|
2015-06-04 20:12:17 +00:00
|
|
|
|
2018-12-05 03:03:03 +00:00
|
|
|
| Key binding | Description |
|
2015-06-04 20:12:17 +00:00
|
|
|
|-------------+-------------------------------------------------------------------------------------|
|
|
|
|
| ~SPC r b~ | Open a buffer. Only buffers with the same purpose as the current buffer are listed. |
|
2017-10-13 13:58:31 +00:00
|
|
|
| ~SPC r B~ | Open any buffer and ignore window-purpose when displaying the buffer. |
|
2015-06-04 20:12:17 +00:00
|
|
|
| ~SPC r d~ | Toggle dedication of selected window to its current purpose. |
|
|
|
|
| ~SPC r D~ | Delete all non-dedicated windows. |
|
|
|
|
| ~SPC r p~ | Choose a purpose and open a buffer with that purpose. |
|
2019-05-26 20:58:52 +00:00
|
|
|
| ~SPC r P~ | Change the purpose of the selected window. Changes the window's buffer accordingly. |
|
2015-06-04 20:12:17 +00:00
|
|
|
|
|
|
|
* Caveats
|
|
|
|
** Popwin and guide-key
|
|
|
|
If a buffer is displayed in two different windows, and only one of those windows
|
|
|
|
is purpose-dedicated, then invoking guide-key will cause both windows to become
|
|
|
|
purpose-dedicated.
|
|
|
|
|
|
|
|
** Packages that do display management
|
|
|
|
Some packages that manage how windows are displayed, such as =gdb= with
|
|
|
|
=gdb-many-windows=, might not play nicely with =window-purpose=. However, it is
|
|
|
|
usually possible to find a solution. After all, even =helm= and =popwin= work
|
|
|
|
with =window-purpose=.
|