diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-23T13·51+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-23T13·51+0000 |
commit | 3732ed479586c6268a23860bfdf0c82e64336920 (patch) | |
tree | 555d6c1347466b4081dcf6062b46fbc0145942ee /configs | |
parent | 37f8ca04f29ea9bf988b2277c42f3e264d7a89e1 (diff) |
Define CL snippet for an untyped function
For the times when I'd like to be DyNaMiC.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/shared/.emacs.d/snippets/lisp-mode/function | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configs/shared/.emacs.d/snippets/lisp-mode/function b/configs/shared/.emacs.d/snippets/lisp-mode/function new file mode 100644 index 000000000000..b1769cd3d102 --- /dev/null +++ b/configs/shared/.emacs.d/snippets/lisp-mode/function @@ -0,0 +1,7 @@ +# -*- mode: snippet -*- +# name: Function +# key: fn +# -- +(defun $1 ($2) + "$3" + $4) \ No newline at end of file |