Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- ;;-*-mode: emacs-lisp; coding: utf-8;-*-
-
- ;; Default file template definitions
- (add-hook 'find-file-hooks 'maybe-load-template)
-
- (setq template-file-prefix (concat (getenv "HOME") "/.emacs.d/templates"))
-
- (defun maybe-load-template ()
- (interactive)
- (when (and
- (string-match "\\.rb$" (buffer-file-name))
- (eq 1 (point-max)))
- (insert-file (concat template-file-prefix "/ruby.rb"))
- (ruby-mode))
- (when (and
- (string-match "\\.sh$" (buffer-file-name))
- (eq 1 (point-max)))
- (insert-file (concat template-file-prefix "/shell.sh"))
- (sh-mode))
- (when (and
- (string-match "\\.ksh$" (buffer-file-name))
- (eq 1 (point-max)))
- (insert-file (concat template-file-prefix "/shell.ksh"))
- (sh-mode))
- (when (and
- (string-match "\\.pl$" (buffer-file-name))
- (eq 1 (point-max)))
- (insert-file (concat template-file-prefix "/perl.pl"))
- (perl-mode))
- (when (and
- (string-match "\\.py$" (buffer-file-name))
- (eq 1 (point-max)))
- (insert-file (concat template-file-prefix "/python.py"))
- (python-mode))
- (when (and
- (string-match "\\.pm$" (buffer-file-name))
- (eq 1 (point-max)))
- (insert-file (concat template-file-prefix "/perl-module.pm"))
- (perl-mode))
- (when (and
- (string-match "\\.el$" (buffer-file-name))
- (eq 1 (point-max)))
- (insert-file (concat template-file-prefix "/elisp.el"))
- (emacs-lisp-mode))
- )
|