all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* doodle buffer
@ 2019-03-14 15:52 Emanuel Berg
  0 siblings, 0 replies; only message in thread
From: Emanuel Berg @ 2019-03-14 15:52 UTC (permalink / raw)
  To: help-gnu-emacs; +Cc: emacs-devel

Another quality release from EBC! [1]

Pretty useful when you for example want to mess
around with words or do a simple calculation
e.g. (* 2 5 3.1415)

The best thing is, if you don't delete
anything, nothing will disappear!


(defun doodle-buffer ()
  (interactive)
  (let ((doodle-buffer "~/ooa/doodle.el"))
    (if (= 1 (count-windows))
        (progn
          (split-window-vertically)
          (other-window 1)
          (find-file doodle-buffer) )
      (find-file doodle-buffer) )))
(defalias 'db #'doodle-buffer)


[1] http://user.it.uu.se/~embe8573/emacs-init/window.el

-- 
underground experts united
http://user.it.uu.se/~embe8573




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-03-14 15:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-14 15:52 doodle buffer Emanuel Berg

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.