From 62aeef4bacc059d67f9a56e9cd5a436b1402a9c3 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 19 May 2022 17:50:26 -0700 Subject: feat(snippets): add a few more snippets Python and elisp. --- emacs/etc/snippets/python-mode/function | 6 ++++++ emacs/etc/snippets/python-mode/main | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 emacs/etc/snippets/python-mode/function create mode 100644 emacs/etc/snippets/python-mode/main (limited to 'emacs/etc/snippets/python-mode') diff --git a/emacs/etc/snippets/python-mode/function b/emacs/etc/snippets/python-mode/function new file mode 100644 index 0000000..ffde801 --- /dev/null +++ b/emacs/etc/snippets/python-mode/function @@ -0,0 +1,6 @@ +# -*- mode: snippet -*- +# name: function +# key: fn +# -- +def $1($2): + $3 \ No newline at end of file diff --git a/emacs/etc/snippets/python-mode/main b/emacs/etc/snippets/python-mode/main new file mode 100644 index 0000000..b2890c2 --- /dev/null +++ b/emacs/etc/snippets/python-mode/main @@ -0,0 +1,6 @@ +# -*- mode: snippet -*- +# name: main +# key: main +# -- +if __name__ == "__main__": + main() \ No newline at end of file -- cgit 1.4.1