diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-22T21·07+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-22T21·13+0000 |
commit | df7385af0d2a59cca2d724312b5efc1e9174b94f (patch) | |
tree | 9b696c880c6a6f517aedba46bf5c54c02eb9e6b6 /configs/shared/.emacs.d/snippets/python-mode/function | |
parent | 4b005487681f0d6a53f6fd892911ed28d195f28c (diff) |
Support snippet for python function
Many of my other commonly used languages have a similar snippet as well.
Diffstat (limited to 'configs/shared/.emacs.d/snippets/python-mode/function')
-rw-r--r-- | configs/shared/.emacs.d/snippets/python-mode/function | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configs/shared/.emacs.d/snippets/python-mode/function b/configs/shared/.emacs.d/snippets/python-mode/function new file mode 100644 index 000000000000..379ceda1a3a6 --- /dev/null +++ b/configs/shared/.emacs.d/snippets/python-mode/function @@ -0,0 +1,6 @@ +# -*- mode: snippet -*- +# name: Function +# key: fn +# -- +def $1($2): + $3 \ No newline at end of file |