No description, website, or topics provided.
Emacs Lisp Makefile
Switch branches/tags
Nothing to show
Permalink
Failed to load latest commit information.
.gitignore Initial commit Apr 18, 2017
Cask Initial commit Apr 18, 2017
Makefile Initial commit Apr 18, 2017
README.org Link to frame mode in README Apr 20, 2017
frame-mode.el Remove unused dependencies Apr 19, 2017

README.org

http://melpa.org/packages/frame-mode-badge.svg

frame-mode

frame-mode configures display-buffer-alist so that calls to display-buffer that result in a buffer being displayed somewhere that does not replace the current buffer always use a different frame instead of using a different window

Installation

Install from MELPA (coming soon) with M-x package-install frame-mode. See the melpa repository for details about how to set up MELPA if you have not already done so.

Configuration

(use-package frame-mode
  :demand t
  :config
  (progn
    (frame-mode +1)
    (frame-keys-mode +1)))