El modo principal inicial para el *Scratch*
búfer está controlado por la variable initial-major-mode
: el valor debe ser un símbolo (que en términos simples significa poner una comilla simple delante del nombre del modo mayor): http: //www.gnu. org / software / emacs / manual / html_node / elisp / Auto-Major-Mode.html
(setq initial-major-mode 'org-mode)
EDITAR : Basado en un comentario del póster original, aquí hay una función de muestra para crear buffers que no visitan archivos en orden secuencial con el modo principal de 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
cuando estás en el*scratch*
búfer?