Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>If you like pre-set window configurations, take a look at the "workspace management" pakages:</p> <ul> <li><a href="https://github.com/nex3/perspective-el" rel="nofollow">Perspective</a> gives you named workspaces</li> <li><a href="https://github.com/kiwanami/emacs-window-manager/" rel="nofollow">Equilibrium Emacs Window Manager</a> is similar but more sophisticated tool which allows to configure popup placement, window configuraion, buffers, fonts and keybindings.</li> </ul> <p>There is more on the <a href="http://www.emacswiki.org/emacs/CategoryProject" rel="nofollow">project management</a> page on EmacsWiki.</p> <p>To your second question, here is what I have in my configuration to flip horizontal/vertical splits (credit: <a href="https://github.com/yyr/emacs.d" rel="nofollow">https://github.com/yyr/emacs.d</a>):</p> <pre><code>(defun split-window-func-with-other-buffer (split-function) (lexical-let ((s-f split-function)) (lambda () (interactive) (funcall s-f) (set-window-buffer (next-window) (other-buffer))))) (defun split-window-horizontally-instead () (interactive) (save-excursion (delete-other-windows) (funcall (split-window-func-with-other-buffer 'split-window-horizontally)))) (defun split-window-vertically-instead () (interactive) (save-excursion (delete-other-windows) (funcall (split-window-func-with-other-buffer 'split-window-vertically)))) (global-set-key "\C-x|" 'split-window-horizontally-instead) (global-set-key "\C-x_" 'split-window-vertically-instead) </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload