2011年6月21日

Windows バッチモード

M-x install-elisp
http://ftp.gnu.org/old-gnu/emacs/windows/contrib/bat-mode.el
C-c
;; ------------------------------------------------------------------------
;; @ windows batch-mode
;; http://qwik.jp/takotlog/BATMode.html
(setq auto-mode-alist
       (append
        (list (cons "file://.[bB][aA][tT]$/" 'bat-mode))
        ;; For DOS init files
        (list (cons "CONFIG\\."   'bat-mode))
        (list (cons "AUTOEXEC\\." 'bat-mode))
        auto-mode-alist))
(autoload 'bat-mode "bat-mode"
      "DOS and Windows BAT files" t)

0 件のコメント:

コメントを投稿