mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-01-18 23:21:22 -08:00
9 lines
301 B
EmacsLisp
9 lines
301 B
EmacsLisp
;;; config/tutorial/autoload/tutorial.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun take-the-tutorial! ()
|
|
"Tutorial entry point."
|
|
(interactive)
|
|
(with-current-buffer (get-buffer-create "*doom-tutorial*")
|
|
(switch-to-buffer (current-buffer))
|
|
(insert "TODO: this needs some work")))
|