summary refs log tree commit diff
path: root/emacs/etc/snippets
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-05-19 17:50:26 -0700
committerFranck Cuny <franck@fcuny.net>2022-05-19 17:51:58 -0700
commit62aeef4bacc059d67f9a56e9cd5a436b1402a9c3 (patch)
treea30f6de78ef5c25e2f473d15bcd022b51d91d179 /emacs/etc/snippets
parentyas: change the default keybinding (diff)
downloademacs.d-62aeef4bacc059d67f9a56e9cd5a436b1402a9c3.tar.gz
feat(snippets): add a few more snippets
Python and elisp.
Diffstat (limited to '')
-rw-r--r--emacs/etc/snippets/emacs-lisp-mode/header1
-rw-r--r--emacs/etc/snippets/python-mode/function6
-rw-r--r--emacs/etc/snippets/python-mode/main6
3 files changed, 13 insertions, 0 deletions
diff --git a/emacs/etc/snippets/emacs-lisp-mode/header b/emacs/etc/snippets/emacs-lisp-mode/header
index ccb905a..b868f51 100644
--- a/emacs/etc/snippets/emacs-lisp-mode/header
+++ b/emacs/etc/snippets/emacs-lisp-mode/header
@@ -3,6 +3,7 @@
 # key: header
 # --
 ;;; `(file-name-nondirectory (buffer-file-name))` --- ${1:summary} -*- lexical-binding: t -*-
+;; Author: Franck Cuny <franck@fcuny.net>
 
 ;;; Commentary:
 
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