*Scratch*
Arabellek için ilk ana mod , değişken tarafından kontrol edilir initial-major-mode
- değerin bir sembol olması gerekir (bu, layman'ın terimleriyle ana mod adının önüne tek bir tırnak koymak anlamına gelir): http: //www.gnu. org / yazılım / emacs / manuel / html_node / elisp / Oto-Major Mode.html
(setq initial-major-mode 'org-mode)
DÜZENLEME : Orijinal posterin bir yorumuna dayanarak, ana mod ile sırayla dosya ziyaret etmeyen tamponlar oluşturmak için örnek bir işlev aşağıdadır org-mode
:
(defun my-scratch-buffer ()
"Create a new scratch buffer -- \*hello-world\*"
(interactive)
(let ((n 0)
bufname buffer)
(catch 'done
(while t
(setq bufname (concat "*hello-world"
(if (= n 0) "" (int-to-string n))
"*"))
(setq n (1+ n))
(when (not (get-buffer bufname))
(setq buffer (get-buffer-create bufname))
(with-current-buffer buffer
(org-mode))
;; When called non-interactively, the `t` targets the other window (if it exists).
(throw 'done (display-buffer buffer t))) ))))
M-x
org-mode
sen olduğunuzda*scratch*
tampon?