mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 05:23:04 +00:00
11 lines
147 B
Plaintext
11 lines
147 B
Plaintext
#name : function template
|
|
#contributor : Xah Lee
|
|
# --
|
|
(defun $1 ()
|
|
"thisandthat."
|
|
(interactive)
|
|
(let (var1)
|
|
(setq var1 some)
|
|
$0
|
|
)
|
|
) |