13 lines
341 B
Plaintext
13 lines
341 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: Minimal Elisp file
|
|
# uuid:
|
|
# key: __
|
|
# condition: t
|
|
# expand-env: ((yas-indent-line 'fixed) (yas-wrap-around-region 'nil) (this-current-file-name (file-name-base (buffer-file-name (current-buffer)))))
|
|
# --
|
|
;;; ${1:`this-current-file-name`}.el -*- lexical-binding: t; -*-
|
|
|
|
$2
|
|
|
|
(provide '$1)
|
|
;;; $1.el ends here |