Function: bat-template

bat-template is an interactive and byte-compiled function defined in bat-mode.el.gz.

Signature

(bat-template)

Documentation

Insert minimal batch file template.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/bat-mode.el.gz
(defun bat-template ()
  "Insert minimal batch file template."
  (interactive)
  (goto-char (point-min)) (insert "@echo off\nsetlocal\n\n"))