Elisp写Emacs org mode 插入源码的模板

;;插入源码 by kirchhoff
(defun org-insert-src (code-type)
  (interactive "MInput an source type:")
  (insert (format "#+BEGIN_SRC %s\n\n#+END_SRC" code-type))
  (beginning-of-line)
  (previous-line)
  )
;;插入源码

可以给它绑定一个按键,任君喜欢~

你可能感兴趣的:(Elisp写Emacs org mode 插入源码的模板)