Skip to content

An executable cookbook for emacse's display engine

Notifications You must be signed in to change notification settings

sabof/magic-buffer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

magic-buffer

An executable cookbook, on how to (ab)use emacse's display engine. Feel free to add sections, or suggest improvements.

screenshot

Trans-network autoload

You can add the following snippet to your .emacs. It will download and install the latest version of magic-buffer on its firsts run.

(defun magic-buffer ()
  (interactive)
  (let (( file-name
          (concat temporary-file-directory
                  "magic-buffer.el"))
        ( try-downloading
          (lambda ()
            (url-copy-file
             "https://raw.githubusercontent.com/sabof/magic-buffer/master/magic-buffer.el"
             file-name t)
            (require 'magic-buffer file-name))))
    (condition-case nil
        (funcall try-downloading)
      (error (funcall try-downloading))))
  (magic-buffer))

then

M-x magic-buffer

About

An executable cookbook for emacse's display engine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published