blob: 2a89a95a6aa526a07cdc82185017a02c343db412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
;;; +scratch.el -*- lexical-binding: t; -*-
;;; Code:
;;(require 'scratch)
(defun +scratch-immortal ()
"Bury, don't kill \"*scratc*\" buffer.
For `kill-buffer-query-functions'."
(if (eq (current-buffer) (get-buffer "*scratch*"))
(progn (bury-buffer)
nil)
t))
(defun +scratch-buffer-setup ()
"Add comment to `scratch' buffer and name it accordingly."
(let* ((mode (format "%s" major-mode))
(string (concat "Scratch buffer for:" mode "\n\n")))
(when scratch-buffer
(save-excursion
(insert string)
(goto-char (point-min))
(comment-region (point-at-bol) (point-at-eol)))
(next-line 2))
(rename-buffer (concat "*scratch<" mode ">*") t)))
(provide '+scratch)
;;; +scratch.el ends here
|