aboutsummaryrefslogtreecommitdiff
path: root/bard-elisp/bard-scratch.el
diff options
context:
space:
mode:
authorbard <[email protected]>2024-04-03 17:27:19 -0400
committerbard <[email protected]>2024-04-03 17:27:19 -0400
commit7e6885a85be99e25d12920806e7d4fc04a8bada0 (patch)
tree19b6b4acd547fc6cb2f2cc6b8303cb51c3da514e /bard-elisp/bard-scratch.el
parenteb7c3add94be07625fc7002b4cf91ea6643697fd (diff)
condensed into a file
Diffstat (limited to 'bard-elisp/bard-scratch.el')
-rw-r--r--bard-elisp/bard-scratch.el32
1 files changed, 0 insertions, 32 deletions
diff --git a/bard-elisp/bard-scratch.el b/bard-elisp/bard-scratch.el
deleted file mode 100644
index 7180ccb..0000000
--- a/bard-elisp/bard-scratch.el
+++ /dev/null
@@ -1,32 +0,0 @@
-;; Text Scratch buffers
-(defun bard/new-org-buffer ()
- (interactive)
- (let ((xbuf (generate-new-buffer "*org*")))
- (switch-to-buffer xbuf)
- (funcall (quote org-mode))
- (text-scale-increase 1.5)
- xbuf))
-(define-key global-map (kbd "M-=") #'bard/new-org-buffer)
-
-(defun bard/new-plain-buffer ()
- (interactive)
- (let ((xbuf (generate-new-buffer "*plain*")))
- (switch-to-buffer xbuf)
- (text-scale-increase 1.5)
- xbuf))
-
-(define-key global-map (kbd "M--") #'bard/new-plain-buffer)
-
-;; elisp scratch buffer
-
-(defun bard/new-elisp-buffer ()
- (interactive)
- (let ((xbuf (generate-new-buffer "*elisp*")))
- (switch-to-buffer xbuf)
- (funcall (quote emacs-lisp-mode))
- (text-scale-increase 1.5)
- xbuf))
-
-(define-key global-map (kbd "C-z C-s") #'bard/new-elisp-buffer)
-
-(provide 'bard-scratch.el)